Home
last modified time | relevance | path

Searched defs:tape (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/eager/
Dtape.py38 def __init__(self, tape): argument
52 def push_tape(tape): argument
57 def watch(tape, tensor): argument
62 def watch_variable(tape, variable): argument
113 def pop_tape(tape): argument
Dimperative_grad.py33 tape, argument
Dpywrap_tfe_src.cc1256 GradientTape* tape; member
1259 static void TFE_Py_Tape_Delete(PyObject* tape) { in TFE_Py_Tape_Delete()
1305 for (auto* tape : tape_set_) { in SafeTapeSet() local
1311 for (auto* tape : tape_set_) { in ~SafeTapeSet() local
1341 TFE_Py_Tape* tape = PyObject_NEW(TFE_Py_Tape, &TFE_Py_Tape_Type); in TFE_Py_TapeSetNew() local
1349 void TFE_Py_TapeSetAdd(PyObject* tape) { in TFE_Py_TapeSetAdd()
1364 void TFE_Py_TapeSetRemove(PyObject* tape) { in TFE_Py_TapeSetRemove()
1437 void TFE_Py_TapeWatch(PyObject* tape, PyObject* tensor) {
1547 void TFE_Py_TapeWatchVariable(PyObject* tape, PyObject* variable) {
1554 PyObject* TFE_Py_TapeWatchedVariables(PyObject* tape) {
[all …]
/external/clang/test/SemaCXX/
Dconstexpr-turing.cpp10 bool tape; member
35 constexpr unsigned run(const State *tm, const Tape &tape, unsigned state) { in run()