Home
last modified time | relevance | path

Searched refs:size_data (Results 1 – 11 of 11) sorted by relevance

/external/autotest/client/bin/result_tools/
Dview.py347 size_data = {SIZE_PERCENT: _get_size_percent(entry.original_size,
355 size_data[SIZE_PERCENT_CLASS] = SIZE_PERCENT_CLASS_REGULAR
357 size_data[SIZE_PERCENT_CLASS] = SIZE_PERCENT_CLASS_TOP
359 size_data[SIZE_TRIMMED] = ''
366 SIZE_INFO: SIZE_INFO_TEMPLATE % size_data,
382 SIZE_INFO: SIZE_INFO_TEMPLATE % size_data,
/external/tensorflow/tensorflow/lite/kernels/
Dresize_bilinear.cc45 const int32* size_data = GetTensorData<int32>(size); in ResizeOutputTensor() local
46 output_size->data[1] = size_data[0]; in ResizeOutputTensor()
47 output_size->data[2] = size_data[1]; in ResizeOutputTensor()
Dresize_nearest_neighbor.cc45 const int32* size_data = GetTensorData<int32>(size); in ResizeOutputTensor() local
46 output_size->data[1] = size_data[0]; in ResizeOutputTensor()
47 output_size->data[2] = size_data[1]; in ResizeOutputTensor()
Dresize_bilinear_test.cc30 std::initializer_list<int> size_data = {}) { in ResizeBilinearOpModel() argument
31 bool const_size = size_data.size() != 0;
34 size_ = AddConstInput(TensorType_INT32, size_data, {2});
Dresize_nearest_neighbor_test.cc30 const TensorData& input, std::initializer_list<int> size_data = {}) { in ResizeNearestNeighborOpModel() argument
31 bool const_size = size_data.size() != 0;
34 size_ = AddConstInput(TensorType_INT32, size_data, {2});
/external/tensorflow/tensorflow/core/kernels/
Dsample_distorted_bounding_box_op.cc391 typename TTypes<T, 1>::Tensor size_data(size->tensor<T, 1>()); in Compute() local
395 size_data(0) = T(target_height); in Compute()
398 size_data(1) = T(target_width); in Compute()
411 size_data(2) = T(-1); in Compute()
/external/v8/tools/clang/plugins/tests/
Dipc.cpp302 size_t size_data; member
332 IPC::WriteParam(nullptr, p.size_data); // ERROR in TestWriteParamMemberArgument()
Dipc.txt210 IPC::WriteParam(nullptr, p.size_data); // ERROR
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_dnn.cc2169 auto size_data = input_desc.seq_length() * input_desc.batch_size() * in DoRnnBackwardImpl() local
2171 if ((size_data > 0) && (input_backprop_data->opaque() != nullptr)) in DoRnnBackwardImpl()
2172 stream->ThenMemZero(input_backprop_data, size_data * sizeof(float)); in DoRnnBackwardImpl()
2174 size_data = input_h_desc.num_layers() * input_h_desc.batch_size() * in DoRnnBackwardImpl()
2176 if ((size_data > 0) && (input_h_backprop_data->opaque() != nullptr)) in DoRnnBackwardImpl()
2177 stream->ThenMemZero(input_h_backprop_data, size_data * sizeof(float)); in DoRnnBackwardImpl()
2179 size_data = input_c_desc.num_layers() * input_c_desc.batch_size() * in DoRnnBackwardImpl()
2181 if ((size_data > 0) && (input_c_backprop_data->opaque() != nullptr)) in DoRnnBackwardImpl()
2182 stream->ThenMemZero(input_c_backprop_data, size_data * sizeof(float)); in DoRnnBackwardImpl()
/external/tensorflow/tensorflow/lite/delegates/nnapi/
Dnnapi_delegate_test.cc1438 std::initializer_list<int> size_data = {}) {
1439 bool const_size = size_data.size() != 0;
1442 size_ = AddConstInput(TensorType_INT32, size_data, {2});
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc2026 size_t size_data = data.size() * sizeof(float); in ConvertPlugin() local
2028 size_data)) { in ConvertPlugin()