Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/graph_transforms/
Dtransform_utils_test.cc40 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestMapNamesToNodes() local
46 Output add = Add(root.WithOpName("add"), a_const, b_const); in TestMapNamesToNodes()
73 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestMapNodesToOutputs() local
79 Output add = Add(root.WithOpName("add"), a_const, b_const); in TestMapNodesToOutputs()
227 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestFilterGraphDef() local
233 Output add = Add(root.WithOpName("add"), a_const, b_const); in TestFilterGraphDef()
287 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestGetOpTypeMatches() local
293 Output add = Add(root.WithOpName("add"), a_const, b_const); in TestGetOpTypeMatches()
384 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestGetOpTypeMatchesDAG() local
386 Output add = Add(root.WithOpName("add"), a_const, a_const); in TestGetOpTypeMatchesDAG()
[all …]
Dfold_constants_test.cc54 Output a_const = in TestSimpleAdd() local
62 Output add = Add(root.WithOpName("add_expect_removed"), a_const, b_const); in TestSimpleAdd()
91 Output a_const = in TestOpExclusionAdd() local
99 Output add = Add(root.WithOpName("add_expect_remains"), a_const, b_const); in TestOpExclusionAdd()
123 Output a_const = in TestShapePropagation() local
126 Output shape = Shape(root.WithOpName("shape_expect_removed"), a_const); in TestShapePropagation()
302 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestRemoveUnusedNodes() local
308 Output add = Add(root.WithOpName("add"), a_const, b_const); in TestRemoveUnusedNodes()
340 Output a_const = ::tensorflow::ops::Const( in TestMaxConstantSizeInBytes() local
349 a_const, b_const); in TestMaxConstantSizeInBytes()
Dtransform_graph_test.cc60 Output a_const = in TestConstantFolding() local
68 Output add = Add(root.WithOpName("add_expect_removed"), a_const, b_const); in TestConstantFolding()
Dfile_utils_test.cc40 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestLoadTextOrBinaryGraphFile() local
Dquantize_nodes_test.cc827 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestInputRange() local
832 BiasAdd(root.WithOpName("bias_add"), a_const, placeholder); in TestInputRange()
852 Output a_const = Const(root.WithOpName("a"), Input::Initializer(a_data)); in TestFallbackRange() local
857 BiasAdd(root.WithOpName("bias_add"), a_const, placeholder); in TestFallbackRange()
/external/libvpx/libvpx/vpx_dsp/arm/
Didct_neon.h105 const int16_t a_const) { in multiply_shift_and_narrow_s16() argument
114 return vqrdmulhq_n_s16(a, a_const * 2); in multiply_shift_and_narrow_s16()
150 const int16x8_t a, const int16_t a_const, const int16x8_t b, in multiply_accumulate_shift_and_narrow_s16() argument
153 t[0] = vmull_n_s16(vget_low_s16(a), a_const); in multiply_accumulate_shift_and_narrow_s16()
154 t[1] = vmull_n_s16(vget_high_s16(a), a_const); in multiply_accumulate_shift_and_narrow_s16()
168 multiply_shift_and_narrow_s32_dual(const int32x4x2_t a, const int32_t a_const) { in multiply_shift_and_narrow_s32_dual() argument
171 b[0] = vmull_n_s32(vget_low_s32(a.val[0]), a_const); in multiply_shift_and_narrow_s32_dual()
172 b[1] = vmull_n_s32(vget_high_s32(a.val[0]), a_const); in multiply_shift_and_narrow_s32_dual()
173 b[2] = vmull_n_s32(vget_low_s32(a.val[1]), a_const); in multiply_shift_and_narrow_s32_dual()
174 b[3] = vmull_n_s32(vget_high_s32(a.val[1]), a_const); in multiply_shift_and_narrow_s32_dual()
[all …]
/external/tensorflow/tensorflow/core/kernels/hexagon/
Dhexagon_rewriter_transform_test.cc47 Output a_const = ops::Const(root.WithOpName("a"), Input::Initializer(a_data)); in TEST() local
53 Output add = ops::Add(root.WithOpName("add"), a_const, b_const); in TEST()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_srgb.c264 LLVMValueRef x05, x0375, a_const, b_const, c_const, tmp2; in lp_build_linear_to_srgb() local
287 a_const = lp_build_const_vec(gallivm, src_type, 0.675f * 1.0622 * 255.0f); in lp_build_linear_to_srgb()
291 tmp = lp_build_mul(&f32_bld, a_const, x0375); in lp_build_linear_to_srgb()
/external/tensorflow/tensorflow/core/kernels/
Dremote_fused_graph_execute_op_test_utils.cc61 Output a_const = ops::Const(root.WithOpName("A"), Input::Initializer(a_data)); in BuildMultipleAddGraph() local
79 Output f_add = ops::Add(root.WithOpName("F"), a_const, b_const); in BuildMultipleAddGraph()
/external/eigen/test/
Devaluators.cpp130 const ArrayXXf a_const(a); in test_evaluators() local
134 VERIFY_IS_APPROX_EVALUATOR(b, a_const.transpose()); in test_evaluators()
228 const ArrayXXf a_const(a); in test_evaluators() local
237 VERIFY_IS_APPROX_EVALUATOR(b, (2 * a_const + 3).transpose()); in test_evaluators()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfolding_rules.cpp1571 const analysis::Constant* a_const = in FMixFeedingExtract() local
1574 if (!a_const) { in FMixFeedingExtract()
1580 assert(a_const->type()->AsFloat()); in FMixFeedingExtract()
1581 double element_value = a_const->GetValueAsDouble(); in FMixFeedingExtract()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dfolding_rules.cpp1571 const analysis::Constant* a_const = in FMixFeedingExtract() local
1574 if (!a_const) { in FMixFeedingExtract()
1580 assert(a_const->type()->AsFloat()); in FMixFeedingExtract()
1581 double element_value = a_const->GetValueAsDouble(); in FMixFeedingExtract()