diff --git a/ai/neural_network_runtime/common/mock_idevice.cpp b/ai/neural_network_runtime/common/mock_idevice.cpp index dc88c673fe433fae27bbf76dd841484e6faf900d..650c77aaf3c8342b2b193fc1921b83d8d71ba014 100644 --- a/ai/neural_network_runtime/common/mock_idevice.cpp +++ b/ai/neural_network_runtime/common/mock_idevice.cpp @@ -80,13 +80,13 @@ void MockIDevice::SetDynamicInputSupported(bool isSupported) int32_t MockIDevice::GetDeviceName(std::string& name) { - name = "RK3568-CPU"; + name = "Device-CPU"; return HDF_SUCCESS; } int32_t MockIDevice::GetVendorName(std::string& name) { - name = "Rockchip"; + name = "TestVendor"; return HDF_SUCCESS; }