From ff9801c6e9c56bcecf7ccceef0999e1b446686b4 Mon Sep 17 00:00:00 2001 From: guopeian Date: Thu, 27 Jun 2024 10:04:01 +0800 Subject: [PATCH] fix bug --- tf_adapter/kernels/geop_npu.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tf_adapter/kernels/geop_npu.cc b/tf_adapter/kernels/geop_npu.cc index 8e5b40376..119668dee 100644 --- a/tf_adapter/kernels/geop_npu.cc +++ b/tf_adapter/kernels/geop_npu.cc @@ -1234,11 +1234,13 @@ Status GeOp::CompileGraph(OpKernelContext *ctx, const std::vector &input return ret; } } - + LOG(INFO) << "The model has been compiled on the Ascend AI processor, current graph id is: " << graph_id; +/* ret = BuildGraph(graph_id, inputs); if (!ret.ok()) { return ret; } +*/ return Status::OK(); } -- Gitee