Home
last modified time | relevance | path

Searched refs:get_op (Results 1 – 7 of 7) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/sgx/
Dmain.c244 struct encl_op_get_from_buf get_op; in TEST_F() local
260 get_op.header.type = ENCL_OP_GET_FROM_BUFFER; in TEST_F()
261 get_op.value = 0; in TEST_F()
263 EXPECT_EQ(ENCL_CALL(&get_op, &self->run, false), 0); in TEST_F()
265 EXPECT_EQ(get_op.value, MAGIC); in TEST_F()
314 struct encl_op_get_from_buf get_op; in TEST_F() local
333 get_op.header.type = ENCL_OP_GET_FROM_BUFFER; in TEST_F()
334 get_op.value = 0; in TEST_F()
336 EXPECT_EQ(ENCL_CALL(&get_op, &self->run, false), 0); in TEST_F()
338 EXPECT_EQ(get_op.value, MAGIC); in TEST_F()
[all …]
/external/tensorflow/tensorflow/core/distributed_runtime/integration_test/
Dc_api_coordination_test.cc224 TFE_Op* get_op = TFE_NewOp(ctx, "TestGetConfigKeyValue", status); in TEST() local
229 TFE_OpAddInput(get_op, next_key, status); in TEST()
234 TFE_Execute(get_op, retvals, &num_retvals, status); in TEST()
248 TFE_DeleteOp(get_op); in TEST()
466 TFE_Op* get_op = TFE_NewOp(ctx, "TestGetConfigKeyValue", status); in TEST_P() local
469 TFE_OpAddInput(get_op, get_key, status); in TEST_P()
472 TFE_OpSetAttrBool(get_op, "blocking", false); in TEST_P()
476 TFE_OpSetDevice(get_op, task2_name, status); in TEST_P()
479 TFE_Execute(get_op, retvals, &num_retvals, status); in TEST_P()
485 TFE_DeleteOp(get_op); in TEST_P()
Dc_api_session_coordination_test.cc115 TF_Operation* get_op = TF_FinishOperation(get_desc, status); in TEST_P() local
134 TF_Output outputs[1] = {{get_op, 0}}; in TEST_P()
/external/tensorflow/tensorflow/python/framework/
Dauto_control_deps_test.py284 def get_op(op_type, sub_name): function
292 read1 = get_op("ReadVariableOp", "read1")
293 functional_op = get_op(op_type, "")
294 read2 = get_op("ReadVariableOp", "read2")
295 assign_op = get_op("AssignVariableOp", "")
475 def get_op(op_type, sub_name): function
483 read1 = get_op("ReadVariableOp", "read1")
484 functional_op = get_op(op_type, "")
485 read2 = get_op("ReadVariableOp", "read2")
486 assign_op = get_op("AssignVariableOp", "")
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorReductionSycl.h38 static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE type get_op(Op &op) { return op; } in get_op() function
49 …static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE type get_op(Eigen::internal::MeanReducer<CoeffReturnT…
64 …static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE type get_op(Eigen::internal::MeanReducer<CoeffReturnT…
86 : scratch(scratch_), aI(aI_), outAcc(outAcc_), op(OpDef::get_op(op_)) {}
141 …scratch_), evaluator(evaluator_), final_output(final_output_), rng(rng_), op(OpDef::get_op(op_)) {}
226 functor(OpDef::get_op(functor_)),
276 op(OpDef::get_op(op_)),
378 op(OpDef::get_op(op_)),
/external/angle/src/compiler/translator/
Dgen_builtin_symbols.py1455 def get_op(name, function_props, group_op_suffix): function
1626 op = get_op(function_name, function_props, group_op_suffix)
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dconstant_folding_test.cc471 auto get_op = [&](bool is_commutative, bool is_left_arg_const, in TEST_F() local
501 Output child = get_op(is_child_commutative, is_left_leaf_const, in TEST_F()
503 Output parent = get_op(is_parent_commutative, is_left_child_const, in TEST_F()