mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 00:21:07 +01:00
This reverts commit8c172fa98a. Reverted https://github.com/pytorch/pytorch/pull/91340 on behalf of https://github.com/clee2000 due to breaking mac builds8c172fa98ahttps://github.com/pytorch/pytorch/actions/runs/3845932024/jobs/6550654339, marking this as weird because it was merged via codev?
20 lines
484 B
C++
20 lines
484 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/autograd/python_variable.h>
|
|
#include <torch/csrc/python_headers.h>
|
|
|
|
namespace torch {
|
|
namespace autograd {
|
|
|
|
Py_ssize_t THPVariable_length(PyObject* self);
|
|
PyObject* THPVariable_getitem(PyObject* self, PyObject* index);
|
|
int THPVariable_setitem(PyObject* self, PyObject* index, PyObject* value);
|
|
|
|
Variable valueToTensor(
|
|
c10::TensorOptions options,
|
|
PyObject* value,
|
|
const at::Device& device);
|
|
|
|
} // namespace autograd
|
|
} // namespace torch
|