Home
last modified time | relevance | path

Searched refs:half_to_float (Results 1 – 10 of 10) sorted by relevance

/external/eigen/Eigen/src/Core/arch/CUDA/
DHalf.h66 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC float half_to_float(__half h);
100 return static_cast<signed char>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
103 return static_cast<unsigned char>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
106 return static_cast<short>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
109 return static_cast<unsigned short>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
112 return static_cast<int>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
115 return static_cast<unsigned int>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
118 return static_cast<long>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
121 return static_cast<unsigned long>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
124 return static_cast<long long>(half_impl::half_to_float(*this)); in EIGEN_EXPLICIT_CAST()
[all …]
/external/igt-gpu-tools/lib/
Digt_halffloat.c191 static void half_to_float(const uint16_t *h, float *f, unsigned int num) in half_to_float() function
213 return half_to_float; in resolve_half_to_float()
/external/llvm-project/llvm/test/CodeGen/X86/
Dhalf-constrained.ll11 define float @half_to_float() strictfp {
12 ; X32-NOF16C-LABEL: half_to_float:
22 ; X32-F16C-LABEL: half_to_float:
32 ; X64-NOF16C-LABEL: half_to_float:
41 ; X64-F16C-LABEL: half_to_float:
/external/FP16/bench/
Dieee-element.cc120 Eigen::half_impl::half_to_float( in Eigen_half_to_float()
Dfrom-ieee-array.cc311 Eigen::half_impl::half_to_float( in Eigen_half_to_float()
/external/tensorflow/tensorflow/lite/tools/optimize/
Dquantization_utils_test.cc606 return Eigen::half_impl::half_to_float(a); in TEST_F()
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dconvert_nodes.cc1642 *out_min = Eigen::half_impl::half_to_float(*result.first); in GetWeightRange()
1643 *out_max = Eigen::half_impl::half_to_float(*result.second); in GetWeightRange()
3863 clip_value_min = Eigen::half_impl::half_to_float( in ConvertClipByValue()
3865 clip_value_max = Eigen::half_impl::half_to_float( in ConvertClipByValue()
5269 Eigen::half_impl::half_to_float(cast_vals_array[j][i]); in ConvertFusedBatchNorm()
5276 Eigen::half_impl::half_to_float(cast_vals_array[j][0]); in ConvertFusedBatchNorm()
Dconvert_nodes_test.cc257 EXPECT_FLOAT_EQ(Eigen::half_impl::half_to_float(lhs[i]), in ExpectArrayNear()
258 Eigen::half_impl::half_to_float(rhs[i])); in ExpectArrayNear()
279 EXPECT_NEAR(Eigen::half_impl::half_to_float(lhs[i]), in ExpectArrayAlmostEqual()
280 Eigen::half_impl::half_to_float(rhs[i]), in ExpectArrayAlmostEqual()
281 Eigen::half_impl::half_to_float(tolerance)); in ExpectArrayAlmostEqual()
/external/tensorflow/tensorflow/core/kernels/
Dreduction_gpu_kernels.cu.h139 return Eigen::half_impl::half_to_float(x);
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dreference_ops.h1031 output_data[i] = Eigen::half_impl::half_to_float(input_data[i]); in Dequantize()