Searched refs:a_float (Results 1 – 12 of 12) sorted by relevance
/external/clang/test/CodeGen/ |
D | atomic-arm64.c | 19 extern _Atomic(float) a_float; 40 __c11_atomic_store(&a_float, 3, memory_order_seq_cst); in test1()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | quantized_matmul_op_test.cc | 292 Tensor a_float(DT_FLOAT, {a_rows, a_cols}); in TEST_F() local 294 &a_float, in TEST_F() 305 Tensor a_quantized = FloatTensorToQuantized<quint8>(a_float, a_min, a_max); in TEST_F()
|
D | matmul_op.cc | 499 Tensor a_float, b_float, out_float; in Compute() local 500 OP_REQUIRES_OK(ctx, ctx->allocate_temp(DT_FLOAT, a.shape(), &a_float)); in Compute() 506 BFloat16ToFloat(a.flat<bfloat16>().data(), a_float.flat<float>().data(), in Compute() 512 ctx, a_float, b_float, dim_pair, &algorithms_, use_autotune_, in Compute()
|
D | sparse_matmul_op.cc | 997 std::unique_ptr<Tensor> a_float; in Compute() local 1004 a_float.reset(new Tensor(DT_FLOAT, a.shape())); in Compute() 1006 a_float->flat<float>().data(), a.NumElements()); in Compute() 1007 left = a_float.get(); in Compute()
|
/external/python/apitools/apitools/base/protorpclite/ |
D | protojson_test.py | 56 a_float = messages.FloatField(4) variable in MyMessage 160 self.assertTrue(isinstance(message.a_float, float)) 161 self.assertEquals(10.0, message.a_float) 173 a_float=3.5,
|
/external/llvm/test/Analysis/LoopAccessAnalysis/ |
D | backward-dep-different-types.ll | 40 %a_float = bitcast i32* %a to float* 41 %arrayidxA_plus_2 = getelementptr inbounds float, float* %a_float, i64 %add
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/LoopAccessAnalysis/ |
D | backward-dep-different-types.ll | 40 %a_float = bitcast i32* %a to float* 41 %arrayidxA_plus_2 = getelementptr inbounds float, float* %a_float, i64 %add
|
/external/e2fsprogs/intl/ |
D | printf-args.h | 95 float a_float; member
|
/external/googletest/googlemock/docs/ |
D | CheatSheet.md | 201 |`FloatEq(a_float)` |`argument` is a `float` value approximately equal to `a_float`, treating two … 203 |`NanSensitiveFloatEq(a_float)`|`argument` is a `float` value approximately equal to `a_float`, tre… 216 |`FloatNear(a_float, max_abs_error)`|`argument` is a `float` value close to `a_float` (absolute err… 218 |`NanSensitiveFloatNear(a_float, max_abs_error)`|`argument` is a `float` value close to `a_float` (…
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 456 config.set('Section1', 'a_float', '3.1415') 474 a_float = config.getfloat('Section1', 'a_float') 476 print a_float + an_int
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 784 config.set('Section1', 'a_float', '3.1415') 802 a_float = config.getfloat('Section1', 'a_float') 804 print(a_float + an_int)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 114 Ensure that int(a_float) returns an int whenever possible. Previously, there
|