/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/device_registrar/ |
H A D | device_registrar_test.cpp | 54 virtual int32_t IsFloat16PrecisionSupported(bool& isSupported) = 0; 116 OH_NN_ReturnCode IsFloat16PrecisionSupported(bool& isSupported) override 170 MOCK_METHOD1(IsFloat16PrecisionSupported, int32_t(bool&));
|
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/device_registrar/ |
H A D | device_registrar_test.cpp | 54 virtual int32_t IsFloat16PrecisionSupported(bool& isSupported) = 0; 116 OH_NN_ReturnCode IsFloat16PrecisionSupported(bool& isSupported) override 170 MOCK_METHOD1(IsFloat16PrecisionSupported, int32_t(bool&));
|
/foundation/ai/neural_network_runtime/test/unittest/common/v2_0/ |
H A D | mock_idevice.h | 36 MOCK_METHOD1(IsFloat16PrecisionSupported, int32_t(bool&));
|
H A D | compilation_mock_idevice.cpp | 123 OH_NN_ReturnCode HDIDeviceV2_0::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_0
|
/foundation/ai/neural_network_runtime/test/unittest/common/v1_0/ |
H A D | mock_idevice.h | 36 MOCK_METHOD1(IsFloat16PrecisionSupported, int32_t(bool&));
|
H A D | compilation_mock_idevice.cpp | 123 OH_NN_ReturnCode HDIDeviceV1_0::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV1_0
|
/foundation/ai/neural_network_runtime/test/fuzztest/ |
H A D | nnrt_device_impl.h | 60 int32_t IsFloat16PrecisionSupported(bool& isSupported)
in IsFloat16PrecisionSupported() function in OHOS::HDI::Nnrt::V2_0::NnrtDeviceImpl
|
/foundation/ai/neural_network_runtime/test/unittest/common/v2_1/ |
H A D | mock_idevice.h | 36 MOCK_METHOD1(IsFloat16PrecisionSupported, int32_t(bool&));
|
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | hdi_device_v1_0.h | 41 OH_NN_ReturnCode IsFloat16PrecisionSupported(bool& isSupported) override;
|
H A D | device.h | 45 virtual OH_NN_ReturnCode IsFloat16PrecisionSupported(bool& isSupported) = 0;
|
H A D | hdi_device_v2_0.h | 41 OH_NN_ReturnCode IsFloat16PrecisionSupported(bool& isSupported) override;
|
H A D | hdi_device_v2_1.h | 41 OH_NN_ReturnCode IsFloat16PrecisionSupported(bool& isSupported) override;
|
H A D | hdi_device_v1_0.cpp | 190 OH_NN_ReturnCode HDIDeviceV1_0::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV1_0 192 auto ret = m_iDevice->IsFloat16PrecisionSupported(isSupported); in IsFloat16PrecisionSupported()
|
H A D | hdi_device_v2_1.cpp | 234 OH_NN_ReturnCode HDIDeviceV2_1::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_1 236 auto ret = m_iDevice->IsFloat16PrecisionSupported(isSupported); in IsFloat16PrecisionSupported()
|
H A D | hdi_device_v2_0.cpp | 239 OH_NN_ReturnCode HDIDeviceV2_0::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_0 241 auto ret = m_iDevice->IsFloat16PrecisionSupported(isSupported); in IsFloat16PrecisionSupported()
|
H A D | nncompiler.cpp | 241 OH_NN_ReturnCode ret = m_device->IsFloat16PrecisionSupported(isSupportedFp16); in SetEnableFp16()
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/include/ |
H A D | nnrt_device_service.h | 46 int32_t IsFloat16PrecisionSupported(bool& isSupported) override;
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/include/ |
H A D | nnrt_device_service.h | 46 int32_t IsFloat16PrecisionSupported(bool& isSupported) override;
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiler/ |
H A D | nn_compiler_test.cpp | 49 MOCK_METHOD1(IsFloat16PrecisionSupported, OH_NN_ReturnCode(bool&)); 544 EXPECT_CALL(*((MockIDevice *) device.get()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F() 567 EXPECT_CALL(*((MockIDevice *) device.get()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F()
|
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/hdi_device/ |
H A D | hdi_device_test.cpp | 564 * @tc.desc: Verify the IsFloat16PrecisionSupported function return success. 574 EXPECT_CALL(*((V1_0::MockIDevice *)device.GetRefPtr()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F() 576 OH_NN_ReturnCode result = hdiDevice->IsFloat16PrecisionSupported(isSupported); in HWTEST_F() 582 * @tc.desc: Verify the IsFloat16PrecisionSupported function return unavailable device. 592 EXPECT_CALL(*((V1_0::MockIDevice *)device.GetRefPtr()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F() 594 OH_NN_ReturnCode result = hdiDevice->IsFloat16PrecisionSupported(isSupported); in HWTEST_F()
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/src/ |
H A D | nnrt_device_service.cpp | 81 int32_t NnrtDeviceService::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::HDI::Nnrt::V1_0::NnrtDeviceService
|
/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/hdi_device/ |
H A D | hdi_device_test.cpp | 61 MOCK_METHOD1(IsFloat16PrecisionSupported, int32_t(bool&)); 706 * @tc.desc: Verify the IsFloat16PrecisionSupported function return success. 716 EXPECT_CALL(*((V2_0::MockIDevice *)device.GetRefPtr()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F() 718 OH_NN_ReturnCode result = hdiDevice->IsFloat16PrecisionSupported(isSupported); in HWTEST_F() 724 * @tc.desc: Verify the IsFloat16PrecisionSupported function return unavailable device. 734 EXPECT_CALL(*((V2_0::MockIDevice *)device.GetRefPtr()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F() 736 OH_NN_ReturnCode result = hdiDevice->IsFloat16PrecisionSupported(isSupported); in HWTEST_F() 2078 * @tc.desc: Verify the IsFloat16PrecisionSupported function return success. 2088 EXPECT_CALL(*((V2_1::MockIDevice *)device.GetRefPtr()), IsFloat16PrecisionSupported(::testing::_)) in HWTEST_F() 2090 OH_NN_ReturnCode result = hdiDevice->IsFloat16PrecisionSupported(isSupporte in HWTEST_F() [all...] |
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/src/ |
H A D | nnrt_device_service.cpp | 82 int32_t NnrtDeviceService::IsFloat16PrecisionSupported(bool& isSupported) in IsFloat16PrecisionSupported() function in OHOS::HDI::Nnrt::V2_0::NnrtDeviceService
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiled_cache/ |
H A D | nn_compiled_cache_test.cpp | 48 MOCK_METHOD1(IsFloat16PrecisionSupported, OH_NN_ReturnCode(bool&));
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_backend/ |
H A D | nn_backend_test.cpp | 46 MOCK_METHOD1(IsFloat16PrecisionSupported, OH_NN_ReturnCode(bool&));
|