HomeSort by relevance Sort by last modified time
    Searched refs:defun (Results 1 - 23 of 23) sorted by null

  /external/tensorflow/tensorflow/contrib/eager/python/examples/mnist/
mnist_test.py 42 def train_one_epoch(defun=False):
44 if defun:
45 model.call = tfe.defun(model.call)
53 def evaluate(defun=False):
56 if defun:
57 model.call = tfe.defun(model.call)
66 train_one_epoch(defun=False)
69 evaluate(defun=False)
72 train_one_epoch(defun=True)
75 evaluate(defun=True
    [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/examples/resnet50/
resnet50_test.py 67 def _apply(self, defun=False):
70 if defun:
71 model.call = tfe.defun(model.call)
78 self._apply(defun=False)
81 self._apply(defun=True)
186 def _benchmark_eager_apply(self, label, defun=False):
189 if defun:
190 model.call = tfe.defun(model.call)
205 self._benchmark_eager_apply('eager_apply', defun=False)
208 self._benchmark_eager_apply('eager_apply_with_defun', defun=True
    [all...]
  /external/tensorflow/tensorflow/python/eager/
function_test.py 45 matmul = function.defun(math_ops.matmul)
53 matmul = function.defun(math_ops.matmul)
55 @function.defun
64 matmul = function.defun(math_ops.matmul)
68 @function.defun
80 @function.defun
90 matmul = function.defun(math_ops.matmul)
104 matmul = function.defun(math_ops.matmul)
120 matmul = function.defun(math_ops.matmul)
167 @function.defun
    [all...]
benchmarks_test.py 271 f = function.defun(math_ops.matmul)
function.py 16 """Defun decorator for defining graph-mode functions."""
212 raise ValueError("tfe.defun cannot capture variables created without "
229 """The name of a generated forward defun named n."""
234 """The name of a generated backward defun named n."""
239 """The name of a forward-but-no-gradient defun named n."""
645 # Defun uses this instead of Tensor as a cache key. Using dtype because
687 See the documentation for `defun` for more information on the semantics of the
715 def defun(func): function
718 `defun` converts a function that constructs a TensorFlow graph into a function
735 `defun`
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/uffi/
uffi.swg 36 (defun identifier-convert-null (id &key type)
40 (defun identifier-convert-lispify (cname &key type)
68 (defun identifier-convert-low-level (cname &key type)
87 (defmacro swig-defun (name &rest rest)
  /external/tensorflow/tensorflow/contrib/eager/python/
tfe.py 27 @@defun
111 defun = function.defun variable
evaluator.py 61 self.call = function.defun(self.call)
119 return function.defun(f)()
metrics_impl.py 115 self.call = function.defun(self.call)
network_test.py 110 net.call = function.defun(net.call)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
allegrocl.swg 321 (cl::defun scm-p1 (form)
342 (defun read-symbol-from-string (string)
352 (cl::defun full-name (id type arity class)
378 (cl::defun identifier-convert-null (id &key type class arity)
384 (cl::defun string-lispify (str)
405 (cl::defun identifier-convert-lispify (cname &key type class arity)
416 (cl::defun id-convert-and-export (name &rest kwargs)
435 (cl::defun maybe-reorder-args (funcname arglist)
442 (cl::defun maybe-return-value (funcname arglist)
449 (cl::defun swig-anyvarargs-p (arglist
    [all...]
  /external/tensorflow/tensorflow/contrib/summary/
summary_ops_test.py 88 @function.defun
  /external/tensorflow/tensorflow/python/ops/
template.py 181 `function.defun` requires of functions: See the documentation of
182 `function.defun` for details. When executing eagerly, setting this flag to
276 self._func = function.defun(func)
541 graph functions. See the documentation for `function.defun` for details.
  /external/tensorflow/tensorflow/python/framework/
ops_test.py 436 @function.Defun(dtypes.float32, func_name="MyFunc")
    [all...]
  /external/e2fsprogs/doc/
texinfo.tex 808 % This defn is used inside fill environments such as @defun.
    [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 808 % This defn is used inside fill environments such as @defun.
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
py_func_test.py 448 wrapped = function.defun(wrapper)
variables_test.py 514 @function.defun
  /toolchain/binutils/binutils-2.27/texinfo/
texinfo.tex 867 % This defn is used inside fill environments such as @defun.
    [all...]
  /external/libffi/
texinfo.tex 759 % This defn is used inside fill environments such as @defun.
    [all...]
  /external/libmicrohttpd/doc/
texinfo.tex 759 % This defn is used inside fill environments such as @defun.
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/
texinfo.tex 759 % This defn is used inside fill environments such as @defun.
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/
texinfo.tex 759 % This defn is used inside fill environments such as @defun.
    [all...]

Completed in 428 milliseconds