Home
last modified time | relevance | path

Searched refs:gather_nd (Results 1 – 25 of 53) sorted by relevance

123

/external/tensorflow/tensorflow/python/kernel_tests/
Dgather_nd_op_test.py45 gather_nd_t = array_ops.gather_nd(params, indices)
67 gather_nd_ok_t = array_ops.gather_nd(params, indices_empty)
73 gather_nd_ok_t = array_ops.gather_nd(params, indices_empty)
80 gather_nd_ok_t = array_ops.gather_nd(params_empty, indices_empty)
87 gather_nd_break_t = array_ops.gather_nd(params_empty, indices_nonempty)
98 gather_nd_t = array_ops.gather_nd(params, indices)
108 gather_nd_t = array_ops.gather_nd(params, indices)
118 gather_nd_t = array_ops.gather_nd(params, indices)
132 gather_nd_t = array_ops.gather_nd(params_t, indices)
147 gather_nd_t = array_ops.gather_nd(params_t, indices)
[all …]
Dlu_op_test.py115 permuted_verification_reshaped = array_ops.gather_nd(
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_gather_nd_op_test.py203 result = ragged_gather_ops.gather_nd(params, indices)
215 ragged_gather_ops.gather_nd(params, indices1)
218 ragged_gather_ops.gather_nd(params, indices2)
240 ragged_gather_ops.gather_nd(params, indices)
Dragged_gather_ops.py330 def gather_nd(params, indices, batch_dims=0, name=None): function
375 return array_ops.gather_nd(params, indices, name)
409 result = indices.with_flat_values(gather_nd(params, indices.flat_values))
458 return array_ops.gather_nd(flattened_params, flattened_index_tuples)
Dragged_dispatch.py429 return ragged_gather_ops.gather_nd(
489 (array_ops.gather_nd, _ragged_gather_nd_v1, ['params', 'indices']),
490 (array_ops.gather_nd_v2, ragged_gather_ops.gather_nd, ['params',
/external/tensorflow/tensorflow/python/ops/
Dsparse_grad.py103 return (None, array_ops.gather_nd(out_grad, sp_indices), None, out_grad)
115 return (None, array_ops.gather_nd(out_grad_reshaped, sp_indices // scale),
227 dense_vals = array_ops.gather_nd(y, scaled_indices)
319 sparse_values_grad = array_ops.gather_nd(grad, sparse_indices)
Darray_grad.py1115 updates_grad = array_ops.gather_nd(grad, indices)
1122 updates_grad = array_ops.gather_nd(grad, indices)
1132 updates_grad = array_ops.gather_nd(grad, indices)
1144 y_output = array_ops.gather_nd(output, indices)
1152 y_grad = array_ops.gather_nd(grad / indicators, indices) * y_indicators
1171 updates_grad = array_ops.gather_nd(grad, indices)
1179 updates_grad = array_ops.gather_nd(grad, indices)
Darray_ops.py5196 def gather_nd(params, indices, name=None, batch_dims=0): function
5350 return params.gather_nd(indices, name=name)
5352 return gen_array_ops.gather_nd(params, indices, name=name)
5360 return gather_nd(params, indices, name=name, batch_dims=batch_dims)
5363 gather_nd_v2.__doc__ = gather_nd.__doc__
5435 out = gen_array_ops.gather_nd(params, indices)
/external/tensorflow/tensorflow/lite/kernels/
Dgather_nd.cc27 namespace gather_nd { namespace
174 gather_nd::Prepare, gather_nd::Eval}; in Register_GATHER_ND()
DAndroid.bp98 "gather_nd.cc",
/external/tensorflow/tensorflow/compiler/tests/
Dwhere_op_test.py55 gathered = array_ops.gather_nd(value, true_vals)
70 gathered = array_ops.gather_nd(value, indices)
Dgather_nd_op_test.py37 gather_nd_t = array_ops.gather_nd(paramsp, indicesp)
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.manip.pbtxt8 name: "gather_nd"
Dtensorflow.-variable.pbtxt96 name: "gather_nd"
/external/tensorflow/tensorflow/lite/testing/op_tests/
Dgather_nd.py61 out = tf.gather_nd(params, indices)
/external/tensorflow/tensorflow/python/ops/parallel_for/
Darray_test.py78 outputs.append(array_ops.gather_nd(x_i, [0], batch_dims=0))
79 outputs.append(array_ops.gather_nd(x_i, [i], batch_dims=0))
80 outputs.append(array_ops.gather_nd(x_i, [[i], [i], [i]], batch_dims=1))
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_GatherV2.pbtxt58 See also `tf.batch_gather` and `tf.gather_nd`.
Dapi_def_GatherNd.pbtxt31 dimension of `params`, in `tf.gather_nd`, `indices` defines slices into the
Dapi_def_ScatterNd.pbtxt33 `tf.gather_nd` operator which extracts values or slices from a given tensor.
/external/tensorflow/tensorflow/python/keras/mixed_precision/
Dautocast_variable.py130 def gather_nd(self, indices, name=None): member in AutoCastVariable
132 val = self._variable.gather_nd(indices, name=name)
Dautocast_variable_test.py107 self.assertEqual(x.gather_nd([0]).dtype, dtypes.float32)
111 self.assertEqual(x.gather_nd([0]).dtype, dtypes.float16)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.-variable.pbtxt95 name: "gather_nd"
/external/tensorflow/tensorflow/lite/
Dtflite_static.bp80 "kernels/gather_nd.cc",
/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples_lib.py81 from tensorflow.lite.testing.op_tests.gather_nd import make_gather_nd_tests
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py1000 permuted_rhs = array_ops.gather_nd(broadcast_rhs, broadcast_perm)
1142 x = array_ops.gather_nd(x, array_ops.stack([batch_indices, perm],

123