Home
last modified time | relevance | path

Searched refs:a_float (Results 1 – 12 of 12) sorted by relevance

/external/clang/test/CodeGen/
Datomic-arm64.c19 extern _Atomic(float) a_float;
40 __c11_atomic_store(&a_float, 3, memory_order_seq_cst); in test1()
/external/tensorflow/tensorflow/core/kernels/
Dquantized_matmul_op_test.cc292 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()
Dmatmul_op.cc499 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()
Dsparse_matmul_op.cc997 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/
Dprotojson_test.py56 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/
Dbackward-dep-different-types.ll40 %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/
Dbackward-dep-different-types.ll40 %a_float = bitcast i32* %a to float*
41 %arrayidxA_plus_2 = getelementptr inbounds float, float* %a_float, i64 %add
/external/e2fsprogs/intl/
Dprintf-args.h95 float a_float; member
/external/googletest/googlemock/docs/
DCheatSheet.md201 |`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/
Dconfigparser.rst456 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/
Dconfigparser.rst784 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/
D2.7.2rc1.rst114 Ensure that int(a_float) returns an int whenever possible. Previously, there