Home | History | Annotate | Download | only in functional
      1 /*
      2  * Copyright (C) 2018 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #define LOG_TAG "neuralnetworks_hidl_hal_test"
     18 
     19 #include "VtsHalNeuralnetworks.h"
     20 
     21 #include "Callbacks.h"
     22 #include "GeneratedTestHarness.h"
     23 #include "TestHarness.h"
     24 #include "Utils.h"
     25 
     26 #include <android-base/logging.h>
     27 #include <android/hidl/memory/1.0/IMemory.h>
     28 #include <hidlmemory/mapping.h>
     29 
     30 namespace android {
     31 namespace hardware {
     32 namespace neuralnetworks {
     33 namespace V1_0 {
     34 namespace vts {
     35 namespace functional {
     36 
     37 using ::android::hardware::neuralnetworks::V1_2::implementation::ExecutionCallback;
     38 using ::android::hardware::neuralnetworks::V1_2::implementation::PreparedModelCallback;
     39 using ::android::nn::allocateSharedMemory;
     40 using ::test_helper::MixedTypedExample;
     41 
     42 std::vector<Request> createRequests(const std::vector<MixedTypedExample>& examples);
     43 
     44 // in frameworks/ml/nn/runtime/tests/generated/
     45 #include "all_generated_V1_0_vts_tests.cpp"
     46 
     47 }  // namespace functional
     48 }  // namespace vts
     49 }  // namespace V1_0
     50 }  // namespace neuralnetworks
     51 }  // namespace hardware
     52 }  // namespace android
     53