You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
3.8 KiB
107 lines
3.8 KiB
/*
|
|
* Copyright (C) 2020 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.
|
|
*/
|
|
|
|
#ifndef ANDROID_PACKAGES_MODULES_NEURALNETWORKS_RUNTIME_TEST_GENERATED_TEST_UTILS_H
|
|
#define ANDROID_PACKAGES_MODULES_NEURALNETWORKS_RUNTIME_TEST_GENERATED_TEST_UTILS_H
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "TestHarness.h"
|
|
|
|
#ifdef NNTEST_SLTS
|
|
#include "SupportLibraryWrapper.h"
|
|
#else
|
|
#include "TestNeuralNetworksWrapper.h"
|
|
#endif
|
|
|
|
namespace android::nn::generated_tests {
|
|
|
|
#ifdef NNTEST_SLTS
|
|
namespace test_wrapper = android::nn::sl_wrapper;
|
|
#endif
|
|
|
|
class GeneratedTestBase
|
|
: public ::testing::TestWithParam<test_helper::TestModelManager::TestParam> {
|
|
protected:
|
|
const std::string& kTestName = GetParam().first;
|
|
const test_helper::TestModel& testModel = *GetParam().second;
|
|
};
|
|
|
|
#define INSTANTIATE_GENERATED_TEST(TestSuite, filter) \
|
|
INSTANTIATE_TEST_SUITE_P( \
|
|
TestGenerated, TestSuite, \
|
|
::testing::ValuesIn(::test_helper::TestModelManager::get().getTestModels(filter)), \
|
|
[](const auto& info) { return info.param.first; })
|
|
|
|
// A generated NDK model.
|
|
class GeneratedModel : public test_wrapper::Model {
|
|
public:
|
|
#ifdef NNTEST_SLTS
|
|
GeneratedModel(const NnApiSupportLibrary* nnapi) : sl_wrapper::Model(nnapi) {}
|
|
#endif
|
|
|
|
// A helper method to simplify referenced model lifetime management.
|
|
//
|
|
// Usage:
|
|
// GeneratedModel model;
|
|
// std::vector<Model> refModels;
|
|
// createModel(&model, &refModels);
|
|
// model.setRefModels(std::move(refModels));
|
|
//
|
|
// This makes sure referenced models live as long as the main model.
|
|
//
|
|
void setRefModels(std::vector<test_wrapper::Model> refModels) {
|
|
mRefModels = std::move(refModels);
|
|
}
|
|
|
|
// A helper method to simplify CONSTANT_REFERENCE memory lifetime management.
|
|
void setConstantReferenceMemory(std::unique_ptr<test_wrapper::Memory> memory) {
|
|
mConstantReferenceMemory = std::move(memory);
|
|
}
|
|
|
|
private:
|
|
std::vector<test_wrapper::Model> mRefModels;
|
|
std::unique_ptr<test_wrapper::Memory> mConstantReferenceMemory;
|
|
};
|
|
|
|
// Convert TestModel to NDK model.
|
|
#ifdef NNTEST_SLTS
|
|
void createModel(const NnApiSupportLibrary* nnapi, const test_helper::TestModel& testModel,
|
|
bool testDynamicOutputShape, GeneratedModel* model);
|
|
inline void createModel(const NnApiSupportLibrary* nnapi, const test_helper::TestModel& testModel,
|
|
GeneratedModel* model) {
|
|
createModel(nnapi, testModel, /*testDynamicOutputShape=*/false, model);
|
|
}
|
|
#else
|
|
void createModel(const test_helper::TestModel& testModel, bool testDynamicOutputShape,
|
|
GeneratedModel* model);
|
|
inline void createModel(const test_helper::TestModel& testModel, GeneratedModel* model) {
|
|
createModel(testModel, /*testDynamicOutputShape=*/false, model);
|
|
}
|
|
#endif
|
|
|
|
void createRequest(const test_helper::TestModel& testModel, test_wrapper::Execution* execution,
|
|
std::vector<test_helper::TestBuffer>* outputs);
|
|
|
|
} // namespace android::nn::generated_tests
|
|
|
|
#endif // ANDROID_PACKAGES_MODULES_NEURALNETWORKS_RUNTIME_TEST_GENERATED_TEST_UTILS_H
|