HomeSort by relevance Sort by last modified time
    Searched defs:add2 (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
debug-info-template-member.cpp 11 int add2(int x) { function
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 188 Integer add2 = new Integer(601); local
196 li.add(add2);
199 previous == add2);
  /external/tensorflow/tensorflow/compiler/xla/service/
defuser_test.cc 132 auto add2 = builder.AddInstruction( local
137 {add2, constant, div, mul, sub, negate, add},
171 auto add2 = builder.AddInstruction( local
175 computation->CreateFusionInstruction({add2, constant, div, mul},
hlo_cse_test.cc 501 auto add2 = builder.AddInstruction( local
504 HloInstruction::CreateBinary(shape_r0, HloOpcode::kMultiply, add1, add2));
509 ->CreateFusionInstruction({mul, add1, add2},
532 // add2 = add(negate2, exp2)
533 // tuple = tuple(add1, add2)
551 auto add2 = builder.AddInstruction(HloInstruction::CreateBinary( local
555 builder.AddInstruction(HloInstruction::CreateTuple({add1, add2}));
hlo_computation_test.cc 198 auto add2 = builder.AddInstruction(HloInstruction::CreateBinary( local
207 add1, add2, add3));
bfloat16_propagation_test.cc 276 HloInstruction* add2 = builder.AddInstruction( local
283 builder.AddInstruction(HloInstruction::CreateTuple({add0, add1, add2}));
299 builder.AddInstruction(HloInstruction::CreateTuple({dot, add2}));
310 EXPECT_FALSE(OutputsBF16(add2));
783 HloInstruction* add2 = builder.AddInstruction( local
920 HloInstruction* add2 = builder.AddInstruction(HloInstruction::CreateBinary( local
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/segment/
segment_test.cc 118 // | add2
127 auto add2 = ops::Add(s.WithOpName("add2"), add0, add1); local
128 auto add3 = ops::Add(s.WithOpName("add3"), add0, add2);
129 auto add4 = ops::Add(s.WithOpName("add4"), add2, add2);
135 const std::set<string> all_adds = {"add0", "add1", "add2", "add3", "add4"};
143 // Make add1 not a candidate and add2 not an input candidate, and we expect
144 // add0 and add2 are removed from the segment.
145 auto without_add2 = all_adds - "add2";
174 auto add2 = ops::Add(s.WithOpName("add2"), add0, add1); local
202 auto add2 = ops::Add(s.WithOpName("add2"), add0, add1); local
249 auto add2 = ops::Add(s.WithOpName("add2"), add1, add1); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
cudnn_fused_conv_rewriter.cc 76 HloInstruction *gte = nullptr, *add1 = nullptr, *add2 = nullptr, local
114 AddAnyOrder(&add2, add2_pattern, Op(&addends[2])), add2_pattern,
138 {conv_instr, bias_broadcast_instr, gte, add1, add2, mul1, mul2}) {
gpu_hlo_schedule_test.cc 137 HloInstruction* add2 = builder.AddInstruction( local
140 HloInstruction::CreateBinary(f32_2x2_, HloOpcode::kAdd, add1, add2));
147 streams->StreamNumberForHlo(*add2));
154 HloVec({add1, add2, add3}));
156 // Parameters x,y,z are mutually unordered, while add1, add2 and add3 are
160 EXPECT_TRUE(order->ExecutesBefore(x, add2));
163 EXPECT_TRUE(order->ExecutesBefore(y, add2));
165 EXPECT_TRUE(order->ExecutesBefore(z, add2));
168 EXPECT_TRUE(order->ExecutesBefore(add2, add3));
169 // The HLO graph does not define an ordering for add1 and add2, but thei
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
multioutput_fusion_test.cc 85 HloInstruction* add2 = builder.AddInstruction(HloInstruction::CreateBinary( local
93 elem_shape2, sub, add2, dot_dnums, DefaultPrecisionConfig(2)));
98 computation->AddInstruction(HloInstruction::CreateTuple({sub, add2}));
108 {tuple, sub, add2, broadcast}, HloInstruction::FusionKind::kLoop),
concat_test.cc 558 // add1 add2 add3
573 auto add2 = Add(mul, ConstantR1<float>(&builder, {3.f, 4.f})); local
575 ConcatInDim(&builder, {add1, add2, add3}, /*dimension=*/0);
fusion_test.cc 207 auto add2 = builder.AddInstruction(HloInstruction::CreateBinary( local
210 ShapeUtil::MakeShape(F32, {1, 3}), add2, {1, 0}));
237 const4, reshape3, add2, const1, const0},
316 // add2 = broadcast(const_vector) + const_array
319 auto add2 = builder.AddInstruction( local
323 ->CreateFusionInstruction(/*instructions_to_fuse=*/{add2, broadcast},
710 auto add2 = builder.AddInstruction(HloInstruction::CreateBinary( local
    [all...]
while_test.cc 1070 auto add2 = LiteralUtil::CreateR0<int32>(16); local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/graph_analyzer/
test_tools.cc 170 auto add2 = graph.add_node(); local
171 *add2 = MakeNodeAddN("add2", "const2_1", "const2_2");
173 add2->add_input("const2_3");
174 add2->add_input("const2_3");
176 (*graph.add_node()) = MakeNodeSub("sub", "add1", "add2");
  /art/compiler/optimizing/
scheduler_test.cc 92 // add2 Add [add1, c2]
93 // mul Mul [add1, add2]
94 // div_check DivZeroCheck [add2] (env: add2, mul)
97 // array_set1 ArraySet [array, add1, add2]
99 // array_set2 ArraySet [array, add1, add2]
108 HInstruction* add2 = new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, c2); local
109 HInstruction* mul = new (GetAllocator()) HMul(DataType::Type::kInt32, add1, add2);
110 HInstruction* div_check = new (GetAllocator()) HDivZeroCheck(add2, 0);
115 new (GetAllocator()) HArraySet(array, add1, add2, DataType::Type::kInt32, 0)
    [all...]
induction_var_analysis_test.cc 412 HInstruction* add2 = InsertInstruction( local
415 new (GetAllocator()) HAdd(DataType::Type::kInt32, add1, add2), 0);
420 EXPECT_STREQ("((1) * i + (7)):Int32", GetInductionInfo(add2, 0).c_str());
512 HInstruction* add2 = InsertInstruction( local
526 GetInductionInfo(add2, 0).c_str());
569 HInstruction* add2 = InsertInstruction( local
585 EXPECT_STREQ("geo((2) * 2 ^ i + (100)):Int32", GetInductionInfo(add2, 0).c_str());
    [all...]
  /external/tensorflow/tensorflow/c/
while_loop_test.cc 169 TF_Operation* add2 = Add(add1, one, params_->body_graph, s_, "add2"); local
171 params_->body_outputs[0] = {add2, 0};
262 inner_params.body_graph, s_, "add2");
c_api_function_test.cc 601 * add2
610 TF_Operation* add2 = Add(add1, feed3, func_graph_, s_, "add2"); local
611 Define(-1, {}, {feed1, feed2, feed3}, {add2}, {});
620 M({{"add2"}}),
625 {"add2_0:sum:0", "add2"}},
705 TF_Operation* add2 = Add(add1, feed3, func_graph_, s_, "add2"); local
706 Define(-1, {}, {feed1, feed2, feed3}, {add1, add2}, {});
715 M({{"add1"}, {"add2"}}),
745 TF_Operation* add2 = Add(add1, feed3, func_graph_, s_, "add2"); local
932 TF_Operation* add2 = Add(add1, one, params->body_graph, s_, "add2"); local
1090 TF_Operation* add2 = Add(add1, feed3, func_graph_, s_, "add2"); local
1440 TF_Operation* add2 = Add(add1, feed3, func_graph_, s_, "add2"); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
cpu_fusion_test.cc 233 // add2 = add(ceil, negate)
235 // In this example, the operands of both add1 and add2 should be fused in the
252 auto add2 = builder.AddInstruction( local
257 builder.AddInstruction(HloInstruction::CreateTuple({add1, add2}));
  /external/tensorflow/tensorflow/core/common_runtime/
executor_test.cc 329 auto add2 = test::graph::Add(g.get(), add0, add1); local
330 test::graph::Send(g.get(), add2, "e", BOB, 1, ALICE);
constant_folding_test.cc 147 auto add2 = ops::Add(s.WithOpName("add2"), a, b);
151 ops::_Send(s.WithOpName("s2"), add2, "add2", "sender", 0, "receiver");
154 auto add2 = ops::Add(s.WithOpName("add2"), a, b);
159 ops::_Send(s.WithOpName("s2"), add2, "add2", "sender", 0, "receiver");
460 auto add2 = ops::Add(s, shape_n[1], shape_n[1]); local
465 auto send2 = ops::_Send(s.WithOpName("send2"), add2, "send2", "sender", 0
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
deblock_msa.c 660 v4i32 add0, add1, add2, add3; local
684 ADD2(sum0_h, dst_r_h, sum1_h, dst_l_h, sum0_h, sum1_h);
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
deadness_analysis_test.cc 356 Output add2 = ops::Add(root.WithOpName("add2"), add0, add1); local
361 EXPECT_FALSE(result->HasInputsWithMismatchingDeadness(*add2.node()));
380 Output add2 = ops::Add(root.WithOpName("add2"), m0.output, m1.output); local
385 EXPECT_FALSE(result->HasInputsWithMismatchingDeadness(*add2.node()));
424 Output add2 = local
425 ops::Add(root.WithOpName("add2"), sw_1.output_false, sw_2.output_false);
426 ops::Merge m1(root.WithOpName("m1"), {add1, add2});
    [all...]
encapsulate_subgraphs_pass_test.cc 738 auto add2 = ops::Add(root.WithOpName("add2"), add1, add1); local
739 add2.node()->AddAttr("_cluster", "cluster2");
740 auto out = ops::Mul(root.WithOpName("mul"), add1, add2);
834 auto add2 = ops::Add(root.WithOpName("add2"), const_guarantee_x1, x2); local
835 auto mul1 = ops::Mul(root.WithOpName("mul1"), const_guarantee_add1, add2);
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
transform_utils_test.cc 679 Output add2 = Add(root.WithOpName("add2"), a_const, a_const); local
685 Output mul2 = Mul(root.WithOpName("output"), mul, add2);
691 TF_ASSERT_OK(RenameNodeInputs(graph_def, {{"a", "b"}}, {"add2"},
698 EXPECT_EQ("a", node_map.at("add2")->input(0));
699 EXPECT_EQ("a", node_map.at("add2")->input(1));
    [all...]

Completed in 3399 milliseconds

1 2