/external/tensorflow/tensorflow/python/kernel_tests/ |
H A D | py_func_test.py | 36 from tensorflow.python.ops import script_ops namespace 56 z = self.evaluate(script_ops.py_func(np_func, [x, y], dtypes.float32)) 64 script_ops.eager_py_func(np_func, [x, y], [dtypes.float32])) 71 z = self.evaluate(script_ops.py_func(np_func, [x, y], [dtypes.float64])) 79 z = self.evaluate(script_ops.py_func(np_func, [x, y], dtypes.complex64)) 89 y = self.evaluate(script_ops.py_func(rfft, [x], dtypes.complex64)) 99 y = self.evaluate(script_ops.py_func(literal, [x], dtypes.float64)) 110 script_ops.py_func(list_func, [x], [dtypes.float64] * 2)) 122 script_ops.py_func(tuple_func, [x], [dtypes.float64] * 2)) 129 script_ops [all...] |
H A D | control_flow_ops_py_test.py | 60 from tensorflow.python.ops import script_ops namespace 2812 lambda i, v: [i + 1, script_ops.py_func(func, [v], [dtypes.float32])[0]],
|
/external/tensorflow/tensorflow/python/framework/ |
H A D | subscribe_test.py | 32 from tensorflow.python.ops import script_ops namespace 64 lambda t: script_ops.py_func(sub, [t], [t.dtype])) 91 (a, b), lambda t: script_ops.py_func(sub, [t], [t.dtype])) 97 [a, b], lambda t: script_ops.py_func(sub, [t], [t.dtype])) 105 }, lambda t: script_ops.py_func(sub, [t], [t.dtype])) 115 pair, lambda t: script_ops.py_func(sub, [t], [t.dtype])) 122 lambda t: script_ops.py_func(sub, [t], [t.dtype])) 138 lambda t: script_ops.py_func(sub, [t], [t.dtype])) 146 lambda t: script_ops.py_func(sub, [t], [t.dtype])) 184 c, lambda t: script_ops [all...] |
/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
H A D | __init__.py | 28 from tensorflow.contrib.framework.python.ops.script_ops import *
|
H A D | script_ops.py | 16 """Script Language Operators. See the @{$python/script_ops} guide. 27 from tensorflow.python.ops.script_ops import py_func as _py_func
|
/external/tensorflow/tensorflow/contrib/py2tf/utils/ |
H A D | py_func.py | 23 from tensorflow.python.ops import script_ops namespace 67 return script_ops.py_func(
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
H A D | tfe.py | 106 from tensorflow.python.ops import script_ops namespace 110 py_func = script_ops.eager_py_func
|
H A D | datasets_test.py | 33 from tensorflow.python.ops import script_ops namespace 157 lambda x: script_ops.py_func(my_map, [[x]], dtypes.int64))
|
/external/tensorflow/tensorflow/contrib/py2tf/converters/ |
H A D | builtin_functions_test.py | 30 from tensorflow.python.ops import script_ops namespace 58 # Note: it's relevant not to include script_ops.py_func here, to verify 79 # Note: it's relevant not to include script_ops.py_func here, to verify 102 with self.compiled(node, script_ops.py_func) as result:
|
/external/tensorflow/tensorflow/contrib/gan/python/eval/python/ |
H A D | sliced_wasserstein_impl.py | 37 from tensorflow.python.ops import script_ops namespace 113 patches = script_ops.py_func(
|
/external/tensorflow/tensorflow/python/ |
H A D | __init__.py | 135 from tensorflow.python.ops import script_ops namespace 303 losses, math_ops, metrics, nn, profiler, resource_loader, sets, script_ops,
|
/external/tensorflow/tensorflow/python/ops/ |
H A D | standard_ops.py | 71 from tensorflow.python.ops.script_ops import py_func 118 from tensorflow.python.ops import script_ops as _script_ops
|
/external/tensorflow/tensorflow/contrib/batching/python/ops/ |
H A D | batch_ops_test.py | 28 from tensorflow.python.ops import script_ops namespace 222 computation_delayed = script_ops.py_func(delayed_plus1,
|
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/ |
H A D | metric_loss_ops.py | 29 from tensorflow.python.ops import script_ops namespace 613 script_ops.py_func( 621 script_ops.py_func( 630 script_ops.py_func( 640 script_ops.py_func(
|
/external/tensorflow/tensorflow/contrib/data/python/kernel_tests/ |
H A D | interleave_dataset_op_test.py | 36 from tensorflow.python.ops import script_ops namespace 132 return script_ops.py_func(map_py_fn, [x], x.dtype) 746 return script_ops.py_func(map_py_fn, [x], x.dtype) 798 y = script_ops.py_func(map_py_fn, [x], x.dtype)
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
H A D | map_dataset_op_test.py | 39 from tensorflow.python.ops import script_ops namespace 473 return script_ops.py_func(_map_py_func, [x], x.dtype) 534 return script_ops.py_func(
|
H A D | iterator_ops_test.py | 43 from tensorflow.python.ops import script_ops namespace 539 handle = script_ops.py_func(_encode_raw, [h], dtypes.string)
|
/external/tensorflow/tensorflow/python/data/ops/ |
H A D | dataset_ops.py | 42 from tensorflow.python.ops import script_ops namespace 347 return script_ops.py_func( 377 script_ops.FuncRegistry._convert(ret, dtype=dtype.as_numpy_dtype) 400 flat_values = script_ops.py_func(
|