Home
last modified time | relevance | path

Searched refs:add_result (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Lib/concurrent/futures/
D_base.py62 def add_result(self, future): member in _Waiter
78 def add_result(self, future): member in _AsCompletedWaiter
80 super(_AsCompletedWaiter, self).add_result(future)
96 def add_result(self, future): member in _FirstCompletedWaiter
97 super().add_result(future)
123 def add_result(self, future): member in _AllCompletedWaiter
124 super().add_result(future)
519 waiter.add_result(self)
/external/python/futures/concurrent/futures/
D_base.py64 def add_result(self, future): member in _Waiter
80 def add_result(self, future): member in _AsCompletedWaiter
82 super(_AsCompletedWaiter, self).add_result(future)
98 def add_result(self, future): member in _FirstCompletedWaiter
99 super(_FirstCompletedWaiter, self).add_result(future)
125 def add_result(self, future): member in _AllCompletedWaiter
126 super(_AllCompletedWaiter, self).add_result(future)
568 waiter.add_result(self)
/external/tensorflow/tensorflow/compiler/xla/service/
Dwhile_loop_invariant_code_motion_test.cc74 HloInstruction* add_result = in TEST_F() local
78 HloInstruction::CreateTuple({gte_0, gte_1, add_result})); in TEST_F()
119 HloInstruction* add_result = in TEST_F() local
124 scalar_s32, HloOpcode::kMultiply, add_result, gte_1)); in TEST_F()
188 HloInstruction* add_result = in TEST_F() local
191 builder.AddInstruction(HloInstruction::CreateTuple({gte_0, add_result})); in TEST_F()
227 HloInstruction* add_result = in TEST_F() local
231 HloInstruction::CreateTuple({gte_1, gte_0, add_result})); in TEST_F()
420 HloInstruction* add_result = in TEST_F() local
423 TF_ASSERT_OK(param->AddControlDependencyTo(add_result)); in TEST_F()
[all …]
Dalgebraic_simplifier.cc1452 HloInstruction* add_result = nullptr; in OptimizeDotOfConcatHelper() local
1491 if (add_result) { in OptimizeDotOfConcatHelper()
1492 add_result = computation_->AddInstruction(HloInstruction::CreateBinary( in OptimizeDotOfConcatHelper()
1493 dot.shape(), HloOpcode::kAdd, add_result, new_dot)); in OptimizeDotOfConcatHelper()
1495 add_result = new_dot; in OptimizeDotOfConcatHelper()
1501 return add_result; in OptimizeDotOfConcatHelper()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_layout_assignment_test.cc282 HloInstruction* add_result; in RunDotOutputFusion() local
284 add_result = builder.AddInstruction(HloInstruction::CreateBinary( in RunDotOutputFusion()
287 add_result = builder.AddInstruction(HloInstruction::CreateBinary( in RunDotOutputFusion()
295 dot_shape, HloInstruction::FusionKind::kOutput, add_result)); in RunDotOutputFusion()
297 computation->ReplaceInstruction(add_result, fusion_instruction)); in RunDotOutputFusion()
/external/autotest/server/cros/network/
Dwpa_cli_proxy.py64 add_result = self.run_wpa_cli_cmd('add_network', check_result=False)
65 network_id = int(add_result.stdout.splitlines()[-1])
/external/clang/test/PCH/
Dexprs.c61 add_result *int_ptr5 = &integer;
Dexprs.h61 typedef typeof(i + Enumerator) add_result; typedef
/external/mesa3d/src/gallium/drivers/r600/
Dr600_query.h161 void (*add_result)(struct r600_common_screen *screen, member
Dr600_perfcounter.c230 .add_result = r600_pc_query_add_result,
Dr600_query.c595 .add_result = r600_query_hw_add_result,
1345 query->ops->add_result(rscreen, query, map + results_base, in r600_query_hw_get_result()
/external/mesa3d/src/gallium/drivers/radeon/
Dr600_query.h161 void (*add_result)(struct si_screen *screen, member
Dr600_perfcounter.c226 .add_result = r600_pc_query_add_result,
Dr600_query.c617 .add_result = r600_query_hw_add_result,
1386 query->ops->add_result(sscreen, query, map + results_base, in si_query_hw_get_result()
/external/mesa3d/src/compiler/nir/
Dnir_loop_analyze.c435 nir_const_value add_result = in test_iterations() local
439 src[limit_rhs ? 0 : 1] = add_result; in test_iterations()
/external/python/cpython2/Lib/test/
Dtest_xmlrpc.py618 add_result, pow_result, div_result = multicall()
619 self.assertEqual(add_result, 2+3)
/external/python/cpython3/Lib/test/
Dtest_xmlrpc.py894 add_result, pow_result, div_result = multicall()
895 self.assertEqual(add_result, 2+3)