forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerator.h
More file actions
26 lines (19 loc) · 702 Bytes
/
Generator.h
File metadata and controls
26 lines (19 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once
#include <torch/csrc/python_headers.h>
#include <ATen/ATen.h>
#include <torch/csrc/THP_export.h>
struct THPGenerator {
PyObject_HEAD
at::Generator *cdata;
bool owner; // if true, frees cdata in destructor
};
// Creates a new Python object wrapping the default at::Generator. The reference is
// borrowed. The caller should ensure that the THGenerator* object lifetime
// last at least as long as the Python wrapper.
THP_API PyObject * THPGenerator_initDefaultGenerator(at::Generator* cdata);
#define THPGenerator_Check(obj) \
PyObject_IsInstance(obj, THPGeneratorClass)
THP_API PyObject *THPGeneratorClass;
#ifdef _THP_CORE
bool THPGenerator_init(PyObject *module);
#endif