Home
last modified time | relevance | path

Searched refs:addop (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/optimizers/
Dmkl_remapper_test.cc76 auto addfetch = [&](::tensorflow::Input addop) { in FuseConv2DWithBiasAndAddNOrAdd() argument
80 ops::Identity(fetch, ops::Relu(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd()
82 ops::Identity(fetch, ops::Relu6(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd()
84 ops::Identity(fetch, ops::Elu(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd()
86 ops::Identity(fetch, ops::internal::LeakyRelu(activate, addop)); in FuseConv2DWithBiasAndAddNOrAdd()
89 ops::Identity(fetch, addop); in FuseConv2DWithBiasAndAddNOrAdd()
184 #define CREATE_CONV2DFUSION_TEST(data_format, addop, activation, bcast) \ argument
187 FuseConv2DWithBiasAnd##addop##_##data_format##_activation##activation##_addbcast##bcast) { \
188 FuseConv2DWithBiasAndAddNOrAdd(#data_format, #activation, #addop, bcast); \
191 #define CREATE_CONV2DFUSION_ADD_ACTIVATION_TEST(data_format, addop, bcast) \ argument
[all …]
Dgeneric_layout_optimizer_transposer_test.cc2569 auto* addop = context.graph_view->GetNode("Add"); in TEST_F() local
2570 ASSERT_NE(addop, nullptr); in TEST_F()
2572 TF_ASSERT_OK(binaryop_transposer.TransposeNode(&context, addop)); in TEST_F()
/external/python/cpython2/Lib/test/
Dtest_ast.py314 addop = ast.Add()
315 x = ast.BinOp(n1, addop, n3)
317 self.assertEqual(x.op, addop)
/external/python/cpython3/Lib/test/
Dtest_ast.py529 addop = ast.Add()
530 x = ast.BinOp(n1, addop, n3)
532 self.assertEqual(x.op, addop)