/external/gemmlowp/meta/ |
D | transform_kernels.h | 30 struct Dequantize { struct 89 class Transform1DKernel<InType, OutType, Dequantize, kernel_size, leftovers> { 91 static void Transform(const InType* in, const Dequantize& params, in Transform() 200 class Transform1DUtil<InType, OutType, Dequantize> { 202 static int EstimateComputeCost(const Dequantize& params) { in EstimateComputeCost() 206 static const InType* OffsetInput(const Dequantize& params, in OffsetInput() 211 static OutType* OffsetOutput(const Dequantize& params, OutType* output, in OffsetOutput()
|
D | transform_kernels_arm_32.h | 3159 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 0>::Transform( in Transform() 3160 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3220 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 1>::Transform( in Transform() 3221 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3301 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 2>::Transform( in Transform() 3302 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3382 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 3>::Transform( in Transform() 3383 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3465 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 4>::Transform( in Transform() 3466 const uint8_t* input, const Dequantize& params, float* output) { in Transform() [all …]
|
D | transform_kernels_arm_64.h | 3095 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 0>::Transform( in Transform() 3096 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3154 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 1>::Transform( in Transform() 3155 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3233 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 2>::Transform( in Transform() 3234 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3312 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 3>::Transform( in Transform() 3313 const uint8_t* input, const Dequantize& params, float* output) { in Transform() 3393 inline void Transform1DKernel<uint8_t, float, Dequantize, 16, 4>::Transform( in Transform() 3394 const uint8_t* input, const Dequantize& params, float* output) { in Transform() [all …]
|
D | test_transform_benchmark.cc | 123 typedef Transform1DParams<std::uint8_t, float, Dequantize> DequantizeParams; in main()
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
D | quantize_test.cc | 187 xla::Dequantize<uint16>(x, range, "MIN_COMBINED"); in XLA_TEST_F() 197 xla::Dequantize<uint8>(x, range, "MIN_COMBINED"); in XLA_TEST_F() 215 xla::Dequantize<uint8>(x, range, "MIN_COMBINED"); in XLA_TEST_F() 238 xla::Dequantize<uint8>(x, range, "MIN_COMBINED", /*transpose_output=*/true); in XLA_TEST_F() 263 xla::Dequantize<uint8>(x, range, "MIN_COMBINED"); in XLA_TEST_F() 293 xla::Dequantize<uint8>(x, range, "MIN_COMBINED", /*transpose_output=*/true); in XLA_TEST_F() 315 xla::Dequantize<uint8>(x, range, "MIN_COMBINED"); in XLA_TEST_F() 329 xla::Dequantize<uint8>(x, range, "MIN_COMBINED", /*transpose_output=*/true); in XLA_TEST_F()
|
D | quantize.h | 82 inline XlaOp Dequantize(XlaOp input, const QuantizedRange& range,
|
/external/tensorflow/tensorflow/core/api_def/java_api/ |
D | api_def_Dequantize.pbtxt | 2 graph_op_name: "Dequantize" 4 name: "quantization.Dequantize"
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Dequantize.pbtxt | 2 graph_op_name: "Dequantize" 15 summary: "Dequantize the \'input\' tensor into a float Tensor." 34 Dequantize on quint8 will take each value, cast to float, and multiply
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | dequantize.cc | 87 optimized_ops::Dequantize(op_params, GetTensorShape(op_context.input), in Eval() 93 reference_integer_ops::Dequantize( in Eval()
|
D | pooling_test.cc | 76 return Dequantize<uint8_t>(ExtractVector<uint8_t>(output_), in GetDequantizedOutput() 95 return Dequantize<int8_t>(ExtractVector<int8_t>(output_), GetScale(output_), in GetDequantizedOutput()
|
D | mul_test.cc | 78 return Dequantize<integer_dtype>(ExtractVector<integer_dtype>(output_), in GetDequantizedOutput() 83 return Dequantize<int16_t>(ExtractVector<int16_t>(output_), in GetDequantizedOutputInt16()
|
D | depthwise_conv_test.cc | 280 return Dequantize<uint8_t>(ExtractVector<uint8_t>(output_), in GetDequantizedOutput() 485 return Dequantize<int8_t>(ExtractVector<int8_t>(output_), GetScale(output_), in GetDequantizedOutput()
|
D | l2norm_test.cc | 60 return Dequantize<T>(ExtractVector<T>(output_), GetScale(output_), in GetDequantizedOutput()
|
D | add_test.cc | 68 return Dequantize<integer_dtype>(ExtractVector<integer_dtype>(output_), in GetDequantizedOutput() 73 return Dequantize<int16_t>(ExtractVector<int16_t>(output_), in GetDequantizedOutputInt16()
|
D | sub_test.cc | 68 return Dequantize<integer_dtype>(ExtractVector<integer_dtype>(output_), in GetDequantizedOutput() 73 return Dequantize<int16_t>(ExtractVector<int16_t>(output_), in GetDequantizedOutputInt16()
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
D | quantize_nodes_test.cc | 508 Dequantize(root.WithOpName("dequantize_op"), quantized_op, in TestRemoveRedundantQuantization() 539 Dequantize(root.WithOpName("final_dequantize"), quantize_op.output, in TestRemoveRedundantQuantization() 607 Dequantize(root.WithOpName("dequantize_op"), requantize_op.output, in TestRemoveRedundantQuantizationWithBiasAdd() 638 Dequantize(root.WithOpName("final_dequantize"), quantize_op.output, in TestRemoveRedundantQuantizationWithBiasAdd() 733 Dequantize(root.WithOpName("dequantize_op"), requantize_op.output, in TestRemoveRedundantQuantizationWithMultipleOutputs() 764 Dequantize(root.WithOpName("final_dequantize"), quantize_op.output, in TestRemoveRedundantQuantizationWithMultipleOutputs() 970 Dequantize(root.WithOpName("dequantize_op"), requantize_op.output, in TestMergeAdjacentRequantizes() 972 Dequantize::Attrs().Mode("MIN_FIRST")); in TestMergeAdjacentRequantizes() 1005 Output fake_dequantize_op = Dequantize( in TestMergeAdjacentRequantizes() 1008 Dequantize::Attrs().Mode("MIN_FIRST")); in TestMergeAdjacentRequantizes() [all …]
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Dequantize.pbtxt | 2 graph_op_name: "Dequantize"
|
/external/tensorflow/tensorflow/core/kernels/ |
D | dequantize_op_test.cc | 160 ops::Dequantize(root, test::AsTensor<T>(inputs), test::AsScalar<float>(-1.5f), in BM_DequantizeMinCombinedCpu() 162 ops::Dequantize::Attrs().Mode("MIN_COMBINED")); in BM_DequantizeMinCombinedCpu()
|
D | meta_support.h | 85 void Dequantize(OpKernelContext* context, const quint8* input, int count,
|
D | dequantize_op.cc | 91 meta::Dequantize(ctx, input_ui8_array.data(), input_ui8_array.size(), in Compute()
|
D | meta_support.cc | 292 void Dequantize(OpKernelContext* tf_context, const quint8* input, int count, in Dequantize() function 297 gemmlowp::meta::Dequantize> in Dequantize()
|
/external/tensorflow/tensorflow/lite/kernels/internal/reference/integer_ops/ |
D | dequantize.h | 25 inline void Dequantize(const tflite::DequantizationParams& op_params, in Dequantize() function
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | xla_dequantize_op.cc | 45 xla::Dequantize<uint8>(input, range, mode_, transpose_output_); in Compile()
|
/external/tensorflow/tensorflow/lite/kernels/internal/ |
D | logsoftmax_quantized_test.cc | 51 reference_ops::Dequantize(dq_params, shape_common, input_data, shape_common, in RunLogSoftmaxFloatReference() 84 reference_integer_ops::Dequantize(dq_params, shape_common, input_data, in RunLogSoftmaxFloatReference()
|
/external/gemmlowp/doc/ |
D | quantization_example.cc | 144 void Dequantize(const QuantizationParams& qparams, in Dequantize() function 373 Dequantize(result_qparams, actual_uint8_result.Storage(), in main()
|