Home
last modified time | relevance | path

Searched refs:tensor_slices (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dmean_stddev_normalization.cc92 const int tensor_slices) in MeanStdDevNormalization() argument
100 std::min(tensor_slices, gpu_info.GetMaxWorkGroupSizeForX()); in MeanStdDevNormalization()
137 while (desired_work_group_size >= tensor_slices * 2) { in MeanStdDevNormalization()
219 const int tensor_slices) { in CreateMeanStdDevNormalization() argument
220 return MeanStdDevNormalization(definition, gpu_info, tensor_slices); in CreateMeanStdDevNormalization()
Dmean_stddev_normalization.h32 const int tensor_slices);
55 const int tensor_slices);
/external/tensorflow/tensorflow/core/util/
Dtensor_slice_set.cc115 std::unordered_map<string, TensorSliceSet*>* tensor_slices) { in RegisterTensorSlice() argument
116 DCHECK_NE(tensor_slices, nullptr); in RegisterTensorSlice()
117 TensorSliceSet* tss = gtl::FindPtrOrNull(*tensor_slices, name); in RegisterTensorSlice()
121 tensor_slices->insert(std::make_pair(name, tss)); in RegisterTensorSlice()
Dtensor_slice_set.h87 std::unordered_map<string, TensorSliceSet*>* tensor_slices);
/external/tensorflow/tensorflow/python/training/saving/
Dfunctional_saver.py70 tensor_slices = []
80 tensor_slices.append(spec.slice_spec)
83 return io_ops.save_v2(file_prefix, tensor_names, tensor_slices, tensors)
105 tensor_names, tensor_slices, tensor_dtypes = zip(*restore_specs)
109 file_prefix, tensor_names, tensor_slices, tensor_dtypes)
/external/tensorflow/tensorflow/python/ops/
Dio_ops.py42 def _save(filename, tensor_names, tensors, tensor_slices=None, name="save"): argument
68 if tensor_slices is None:
71 return gen_io_ops.save_slices(filename, tensor_names, tensor_slices,
/external/tensorflow/tensorflow/core/kernels/
Dload_and_remap_matrix_op.cc168 std::vector<TensorSlice> tensor_slices; in Compute() local
184 tensor_slices.push_back(slice); in Compute()
202 for (const TensorSlice& tensor_slice : tensor_slices) { in Compute()
/external/tensorflow/tensorflow/python/training/
Dsaver.py105 tensor_slices = []
110 tensor_slices.append(spec.slice_spec)
116 tensor_slices=tensor_slices)
120 return io_ops.save_v2(filename_tensor, tensor_names, tensor_slices,