diff --git a/tf_adapter/kernels/geop_npu.cc b/tf_adapter/kernels/geop_npu.cc index 74ffa727bde93969940db4432077456b172945da..3e9a6b5fc163f8f136a3aa566c49f66a6c06e42e 100644 --- a/tf_adapter/kernels/geop_npu.cc +++ b/tf_adapter/kernels/geop_npu.cc @@ -133,10 +133,8 @@ class NpuHostFixedAllocator : public tensorflow::Allocator, public tensorflow::c private: explicit NpuHostFixedAllocator(geDataUniquePtr ptr) : ptr_(std::move(ptr)) { - ADP_LOG(INFO) << "[GEOP] Zero copied ge tensor: " << std::hex << reinterpret_cast(ptr_.get()); } ~NpuHostFixedAllocator() override { - ADP_LOG(INFO) << "[GEOP] Release zero copied ge tensor: " << std::hex << reinterpret_cast(ptr_.get()); } std::string Name() override { return "NpuHostFixedAllocator"; @@ -158,7 +156,6 @@ class NpuGetNextOutputInfo { NpuGetNextOutputInfo(ge::Placement placement, std::vector &dims, size_t output_size, geDataUniquePtr data) : placement_(placement), dims_(dims), output_size_(output_size), data_(std::move(data)) {} ~NpuGetNextOutputInfo() { - ADP_LOG(INFO) << "[GEOP] Release NpuGetNextOutputInfo."; } ge::Placement placement_; std::vector dims_; @@ -174,10 +171,8 @@ class NpuHostGetNextAllocator : public tensorflow::Allocator, public tensorflow: private: explicit NpuHostGetNextAllocator(std::unique_ptr output) : output_(std::move(output)) { - ADP_LOG(INFO) << "[GEOP] getnext data addr:" << reinterpret_cast(output_->data_.get()); } ~NpuHostGetNextAllocator() override { - ADP_LOG(INFO) << "[GEOP] Release getnext data addr:" << reinterpret_cast(output_->data_.get()); } std::string Name() override { return "NpuHostGetNextAllocator";