Home
last modified time | relevance | path

Searched refs:GetOp (Results 1 – 24 of 24) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Drewrite_tpu_embedding_ops.cc52 LogicalResult GetOp(FuncOp func, OpT* result) { in GetOp() function
65 if (failed(GetOp(func, &recv_op))) return signalPassFailure(); in runOnFunction()
68 if (failed(GetOp(func, &send_op))) return signalPassFailure(); in runOnFunction()
/external/tensorflow/tensorflow/core/util/
Dmkl_util_test.cc98 EXPECT_EQ(nullptr, lru_cache.GetOp(std::to_string(k))); in TEST()
104 int* int_ptr = lru_cache.GetOp(std::to_string(k)); in TEST()
114 EXPECT_EQ(nullptr, lru_cache.GetOp(std::to_string(k))); in TEST()
Dmkl_util.h1708 T* GetOp(const string& key) { in GetOp() function
1796 MklPrimitive* GetOp(const string& key) { in GetOp() function
1798 return lru_cache.GetOp(key); in GetOp()
1975 return this->GetOp(key); in GetReorder()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dgeneric_layout_optimizer_transposer.cc119 const int start = (node.GetOp() == "Concat") ? 1 : 0; in GetConcatDataFaninPorts()
745 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
760 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
783 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
807 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
830 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
864 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
886 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
906 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
929 << "' with op '" << node->GetOp() << "' from data format '" in TransposeNode()
[all …]
Dimplementation_selector.cc137 if ("Identity" == fanout.node_view()->GetOp()) { in UpdateForwardIdentityNodeDtype()
347 if (node_view->GetOp() != kDeviceIndexOp) { in SelectDeviceIndex()
357 if (fanout.node_view()->GetOp() != kCaseOp && in SelectDeviceIndex()
358 fanout.node_view()->GetOp() != kStatelessCaseOp) in SelectDeviceIndex()
Dgeneric_layout_optimizer_test.cc443 EXPECT_EQ(input_sizes_node->GetOp(), "DataFormatVecPermute"); in TEST_F()
Dremapper.cc553 if (node_view->GetOp() != "FusedBatchNorm" && in IsCpuCompatibleDataType()
/external/pdfium/core/fpdfapi/page/
Dcpdf_psengine.cpp143 const PDF_PSOP op = m_Operators[i]->GetOp(); in Execute()
153 if (i == 0 || m_Operators[i - 1]->GetOp() != PSOP_PROC) in Execute()
159 if (i < 2 || m_Operators[i - 1]->GetOp() != PSOP_PROC || in Execute()
160 m_Operators[i - 2]->GetOp() != PSOP_PROC) { in Execute()
Dcpdf_psengine.h77 PDF_PSOP GetOp() const { return m_op; } in GetOp() function
Dcpdf_psengine_unittest.cpp71 PDF_PSOP new_op = new_psop->GetOp(); in TEST()
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_softmax_op.cc182 return this->GetOp(key); in GetSoftmaxFwd()
Dmkl_pooling_ops_common.h202 return this->GetOp(key); in GetPoolingFwd()
346 return this->GetOp(key); in GetPoolingBwd()
Dmkl_matmul_ops_common.h371 return this->GetOp(key); in GetMklDnnMatMulFwd()
685 return this->GetOp(key); in GetMklMatMul()
Dmkl_quantize_op.cc201 return this->GetOp(key); in GetReorder()
Dmkl_slice_op.cc302 return this->GetOp(key); in GetReorder()
Dmkl_conv_grad_input_ops.cc293 return this->GetOp(key); in GetConvBwdInput()
Dmkl_relu_op.cc206 return this->GetOp(key); in GetEltwiseFwd()
418 return this->GetOp(key); in GetEltwiseBwd()
Dmkl_conv_grad_filter_ops.cc349 return this->GetOp(key); in GetConvBwdFilter()
Dmkl_fused_batch_norm_op.cc367 return this->GetOp(key); in GetBatchNormFwd()
624 return this->GetOp(key); in GetBatchNormBwd()
Dmkl_concat_op.cc429 return this->GetOp(key); in GetConcatFwd()
Dmkl_conv_ops.cc403 return this->GetOp(key); in GetConvFwd()
/external/tensorflow/tensorflow/core/grappler/utils/
Dgraph_view_internal.h162 const string& GetOp() const { return node()->op(); } in GetOp() function
419 if (diff->graph_view->GetNode(diff->node_index)->GetOp() == op) { in UpdateOp()
Dgraph_view_test.cc260 TYPED_TEST(TypedNodeViewTest, GetOp) { in TYPED_TEST() argument
271 EXPECT_EQ(a_node->GetOp(), "op_a"); in TYPED_TEST()
275 EXPECT_EQ(b_node->GetOp(), "op_b"); in TYPED_TEST()
279 EXPECT_EQ(c_node->GetOp(), "op_c"); in TYPED_TEST()
283 EXPECT_EQ(d_node->GetOp(), "op_d"); in TYPED_TEST()
810 EXPECT_EQ(node_view->GetOp(), expected_node_view.GetOp()); in CompareGraphViewWithGraph()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc88 TFE_Op* GetOp(TFE_Context* ctx, const char* op_or_function_name, in GetOp() function
864 TFE_Op* op = GetOp(ctx, op_name, device_name, out_status); in TFE_Py_ExecuteCancelable()
3627 TFE_Op* op = GetOp(ctx, op_name, op_exec_info.device_name, status);