/external/tensorflow/tensorflow/python/kernel_tests/ |
D | spacetodepth_op_test.py | 42 x_tf = array_ops.space_to_depth(input_nhwc, block_size) 48 x_tf = array_ops.space_to_depth(input_nhwc, block_size) 52 output_nchw = array_ops.space_to_depth( 141 x_tf = array_ops.space_to_depth(input_nhwc, block_size) 148 x_tf = array_ops.space_to_depth(input_nhwc, block_size) 168 out_tf = array_ops.space_to_depth(x_np, block_size) 176 _ = array_ops.space_to_depth(x_np, block_size) 183 out_tf = array_ops.space_to_depth(x_np, block_size) 191 out_tf = array_ops.space_to_depth(x_np, block_size) 199 out_tf = array_ops.space_to_depth(x_np, block_size) [all …]
|
D | depthtospace_op_test.py | 243 out_tf = array_ops.space_to_depth(x_np, block_size) 255 _ = array_ops.space_to_depth(x_np, block_size)
|
D | spacetobatch_op_test.py | 327 array_ops.space_to_depth(
|
/external/tensorflow/tensorflow/lite/micro/kernels/ |
D | space_to_depth.cc | 29 namespace space_to_depth { namespace 148 nullptr, nullptr, space_to_depth::Prepare, in Register_SPACE_TO_DEPTH_REF() 149 space_to_depth::Eval<space_to_depth::kReference>}; in Register_SPACE_TO_DEPTH_REF() 155 nullptr, nullptr, space_to_depth::Prepare, in Register_SPACE_TO_DEPTH_GENERIC_OPT() 156 space_to_depth::Eval<space_to_depth::kGenericOptimized>}; in Register_SPACE_TO_DEPTH_GENERIC_OPT()
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | space_to_depth.cc | 29 namespace space_to_depth { namespace 148 nullptr, nullptr, space_to_depth::Prepare, in Register_SPACE_TO_DEPTH_REF() 149 space_to_depth::Eval<space_to_depth::kReference>}; in Register_SPACE_TO_DEPTH_REF() 155 nullptr, nullptr, space_to_depth::Prepare, in Register_SPACE_TO_DEPTH_GENERIC_OPT() 156 space_to_depth::Eval<space_to_depth::kGenericOptimized>}; in Register_SPACE_TO_DEPTH_GENERIC_OPT()
|
D | Android.bp | 148 "space_to_depth.cc",
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | tpu_space_to_depth_pass.cc | 443 auto space_to_depth = in HandleHostInput() local 445 cluster_func.setOperand(index, space_to_depth); in HandleHostInput() 446 return space_to_depth; in HandleHostInput() 470 auto space_to_depth = in HandleHostReplicatedInputs() local 472 entry.value().set(space_to_depth); in HandleHostReplicatedInputs() 473 block_arg.setType(space_to_depth.getType()); in HandleHostReplicatedInputs()
|
/external/tensorflow/tensorflow/lite/testing/op_tests/ |
D | space_to_depth.py | 47 out = tf.space_to_depth(input_tensor, block_size=parameters["block_size"])
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/g3doc/ |
D | space_to_depth.md | 56 `tf.nn.space_to_depth`. 102 … follows the space-to-depth logic: https://www.tensorflow.org/api_docs/python/tf/nn/space_to_depth) 162 %space_to_depth = "tf.SpaceToDepth"(%input) {block_size = 2, ...}: 164 %device_launch = "tf_device.launch_func"(%space_to_depth,...) {func = @_func,...)
|
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/kernels/ |
D | BUILD | 628 name = "space_to_depth", 629 srcs = ["space_to_depth.cc"], 630 hdrs = ["space_to_depth.h"], 649 ":space_to_depth", 767 "space_to_depth",
|
/external/tensorflow/tensorflow/python/ops/ |
D | array_ops.py | 3985 def space_to_depth(input, block_size, name=None, data_format="NHWC"): # pylint: disable=redefined-… function 3986 return gen_array_ops.space_to_depth(input, block_size, data_format, name=name) 3989 space_to_depth.__doc__ = gen_array_ops.space_to_depth.__doc__ 3995 return gen_array_ops.space_to_depth(input, block_size, data_format, name=name) 3998 space_to_depth_v2.__doc__ = gen_array_ops.space_to_depth.__doc__
|
D | array_grad.py | 958 return array_ops.space_to_depth(grad, block_size, data_format=data_format)
|
/external/tensorflow/tensorflow/lite/ |
D | tflite_static.bp | 131 "kernels/space_to_depth.cc",
|
D | build_def.bzl | 390 "space_to_depth",
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/ |
D | BUILD | 138 "//tensorflow/lite/delegates/gpu/common/tasks:space_to_depth",
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
D | BUILD | 839 name = "space_to_depth", 840 srcs = ["space_to_depth.cc"], 841 hdrs = ["space_to_depth.h"], 857 ":space_to_depth",
|
/external/tensorflow/tensorflow/lite/testing/ |
D | generate_examples_lib.py | 134 from tensorflow.lite.testing.op_tests.space_to_depth import make_space_to_depth_tests
|
D | BUILD | 638 "space_to_depth",
|
/external/tensorflow/tensorflow/lite/kernels/internal/ |
D | BUILD | 507 "reference/space_to_depth.h", 616 "reference/space_to_depth.h",
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | array_test.py | 490 return array_ops.space_to_depth(x1, 2, data_format="NHWC")
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.nn.pbtxt | 312 name: "space_to_depth"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.nn.pbtxt | 384 name: "space_to_depth"
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | unary_ops_test.py | 1120 return array_ops.space_to_depth(
|
/external/tensorflow/tensorflow/compiler/mlir/lite/tests/ |
D | legalize-tf.mlir | 1404 func @space_to_depth(%arg0: tensor<1x2x2x1xf32>) -> tensor<?xf32> { 1408 // CHECK-LABEL: space_to_depth 1410 …// CHECK: "tfl.space_to_depth"(%[[ARG]]) {block_size = 2 : i32} : (tensor<1x2x2x1xf32>) -> tensor<…
|
/external/tensorflow/tensorflow/compiler/mlir/tosa/tests/ |
D | tfl-to-tosa-pipeline.mlir | 727 …%0 = "tfl.space_to_depth"(%arg0) {block_size = 2 : i32} : (tensor<1x32x32x8xf32>) -> tensor<1x16…
|