From b321a9f58277bfd7f77d79e2e303169abfc33706 Mon Sep 17 00:00:00 2001 From: baker Date: Mon, 23 Nov 2020 09:49:45 +0800 Subject: [PATCH] fix complex not support print error --- ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc b/ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc index 7e93b152..351a6f70 100755 --- a/ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc +++ b/ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc @@ -61,9 +61,9 @@ Status RandomUniformKernel::Compute(TaskContext& context) { } break; default: - GELOGW("Supported DataType is DT_FLOAT16 / DT_FLOAT / DT_DOUBLE, but data_type=%s", + GELOGE("Supported DataType is DT_FLOAT16 / DT_FLOAT / DT_DOUBLE, but data_type=%s", TypeUtils::DataTypeToSerialString(data_type).c_str()); - return NOT_CHANGED; + return UNSUPPORTED; } GELOGI("[%s] compute success.", node_->GetName().c_str());