Browse Source

fix complex not support print error

tags/v1.1.0
baker 4 years ago
parent
commit
3167e3b485
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc

+ 1
- 1
ge/hybrid/node_executor/host_cpu/kernel/random_uniform_kernel.cc View File

@@ -61,7 +61,7 @@ Status RandomUniformKernel::Compute(TaskContext& context) {
}
break;
default:
GELOGE("Supported DataType is DT_FLOAT16 / DT_FLOAT / DT_DOUBLE, but data_type=%s",
GELOGE(UNSUPPORTED, "Supported DataType is DT_FLOAT16 / DT_FLOAT / DT_DOUBLE, but data_type=%s",
TypeUtils::DataTypeToSerialString(data_type).c_str());
return UNSUPPORTED;
}


Loading…
Cancel
Save