diff --git a/mindspore/lite/tools/benchmark/benchmark.cc b/mindspore/lite/tools/benchmark/benchmark.cc index ada79393ef7392dde1066df32b0eabafe54bdbf5..11485b71df65da4c6cbe9884df1d16536e3cfa9a 100644 --- a/mindspore/lite/tools/benchmark/benchmark.cc +++ b/mindspore/lite/tools/benchmark/benchmark.cc @@ -544,6 +544,11 @@ int Benchmark::Init() { return RET_ERROR; } + if (_flags->device != "CPU" && _flags->device != "GPU") { + MS_LOG(ERROR) << "Device type:" << _flags->device << " is not supported."; + return RET_ERROR; + } + return RET_OK; } @@ -576,10 +581,13 @@ int RunBenchmark(int argc, const char **argv) { return RET_ERROR; } - if (flags.device == "NPU") { - status = mBenchmark.RunBenchmark("NPU"); - } else { + if (flags.device == "GPU") { + status = mBenchmark.RunBenchmark("GPU"); + } else if (flags.device == "CPU") { status = mBenchmark.RunBenchmark("CPU"); + } else { + MS_LOG(ERROR) << "Device type" << flags.device << " not support."; + return RET_ERROR; } if (status != 0) { diff --git a/mindspore/lite/tools/benchmark/benchmark.h b/mindspore/lite/tools/benchmark/benchmark.h index 7aeaee55985973983eecc248738283c989f4a9da..b01b29b74c68472a0c64793ea2107419ea596a87 100644 --- a/mindspore/lite/tools/benchmark/benchmark.h +++ b/mindspore/lite/tools/benchmark/benchmark.h @@ -56,7 +56,7 @@ class MS_API BenchmarkFlags : public virtual FlagParser { AddFlag(&BenchmarkFlags::inDataPath, "inDataPath", "Input data path, if not set, use random input", ""); AddFlag(&BenchmarkFlags::inDataTypeIn, "inDataType", "Input data type. img | bin", "bin"); AddFlag(&BenchmarkFlags::omModelPath, "omModelPath", "OM model path, only required when device is NPU", ""); - AddFlag(&BenchmarkFlags::device, "device", "CPU | NPU | GPU", "CPU"); + AddFlag(&BenchmarkFlags::device, "device", "CPU | GPU", "CPU"); AddFlag(&BenchmarkFlags::cpuBindMode, "cpuBindMode", "Input -1 for MID_CPU, 1 for HIGHER_CPU, 0 for NO_BIND, defalut value: 1", 1); // MarkPerformance