65 lines
2.4 KiB
C++
65 lines
2.4 KiB
C++
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
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.
|
|
==============================================================================*/
|
|
|
|
#include <memory>
|
|
|
|
#include <gtest/gtest.h>
|
|
#include "pthreadpool.h" // from @pthreadpool
|
|
#include "tensorflow/lite/c/c_api_types.h"
|
|
#include "tensorflow/lite/delegates/xnnpack/xnnpack_delegate.h"
|
|
|
|
namespace tflite {
|
|
namespace xnnpack {
|
|
|
|
TEST(Delegate, CreateWithoutParams) {
|
|
std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)>
|
|
xnnpack_delegate(TfLiteXNNPackDelegateCreate(nullptr),
|
|
TfLiteXNNPackDelegateDelete);
|
|
}
|
|
|
|
TEST(Delegate, CreateWithDefaultParams) {
|
|
TfLiteXNNPackDelegateOptions delegate_options =
|
|
TfLiteXNNPackDelegateOptionsDefault();
|
|
std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)>
|
|
xnnpack_delegate(TfLiteXNNPackDelegateCreate(&delegate_options),
|
|
TfLiteXNNPackDelegateDelete);
|
|
}
|
|
|
|
TEST(Delegate, CreateWithNumThreadsParam) {
|
|
TfLiteXNNPackDelegateOptions delegate_options =
|
|
TfLiteXNNPackDelegateOptionsDefault();
|
|
delegate_options.num_threads = 2;
|
|
std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)>
|
|
xnnpack_delegate(TfLiteXNNPackDelegateCreate(&delegate_options),
|
|
TfLiteXNNPackDelegateDelete);
|
|
}
|
|
|
|
TEST(Delegate, GetThreadPool) {
|
|
TfLiteXNNPackDelegateOptions delegate_options =
|
|
TfLiteXNNPackDelegateOptionsDefault();
|
|
delegate_options.num_threads = 2;
|
|
std::unique_ptr<TfLiteDelegate, decltype(&TfLiteXNNPackDelegateDelete)>
|
|
xnnpack_delegate(TfLiteXNNPackDelegateCreate(&delegate_options),
|
|
TfLiteXNNPackDelegateDelete);
|
|
|
|
pthreadpool_t threadpool = static_cast<pthreadpool_t>(
|
|
TfLiteXNNPackDelegateGetThreadPool(xnnpack_delegate.get()));
|
|
ASSERT_TRUE(threadpool);
|
|
ASSERT_EQ(2, pthreadpool_get_threads_count(threadpool));
|
|
}
|
|
|
|
} // namespace xnnpack
|
|
} // namespace tflite
|