mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 10:44:41 +00:00
This change adds a host build of VtsHalNeuralnetworksTargetTest. In the existing device build of VtsHalNeuralnetworksTargetTest, the drivers run out-of-process. In the host build of VtsHalNeuralnetworkaTargetTest, the driver runs in-process. The in-process driver that runs on the host is the canonical sample driver (which is just the CPU "driver", located in packages/modules/NeuralNetworks/driver/sample) adapted to an AIDL interface (by the adapter code in hardware/interfaces/neuralnetworks/utils/adapter/aidl). Bug: N/A Test: mma Test: VtsHalNeuralnetworksTargetTest on host Change-Id: Ia30dd3a7db8e0592b9f13d69c9831f8ffe10c371
23 lines
962 B
XML
23 lines
962 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2022 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<configuration description="Runs VtsHalNeuralnetworksTargetTest.">
|
|
<test class="com.android.tradefed.testtype.HostGTest" >
|
|
<option name="module-name" value="VtsHalNeuralnetworksTargetTest" />
|
|
<option name="native-test-timeout" value="15m" />
|
|
</test>
|
|
</configuration>
|
|
|