70 lines
2.2 KiB
C++
70 lines
2.2 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.
|
|
==============================================================================*/
|
|
|
|
#ifndef TENSORFLOW_LITE_DELEGATES_XNNPACK_TEST_UTIL_H_
|
|
#define TENSORFLOW_LITE_DELEGATES_XNNPACK_TEST_UTIL_H_
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
#include "tensorflow/lite/schema/schema_generated.h"
|
|
|
|
namespace tflite {
|
|
namespace xnnpack {
|
|
|
|
int8_t QuantizeInt8(float value, int32_t zero_point, float scale);
|
|
|
|
void QuantizeInt8PerChannel(const float* scale, const int64_t* zero_point,
|
|
int32_t quantized_dimension,
|
|
const float* input_data, int8_t* output_data,
|
|
const std::vector<int32_t>& shape);
|
|
|
|
float GetInt8QuantizationScale(const std::vector<float>& data);
|
|
|
|
std::vector<float> GetInt8QuantizationScalePerChannel(
|
|
const float* data, int32_t quantized_dimension,
|
|
const std::vector<int32_t>& shape);
|
|
|
|
template <class Tester>
|
|
class ModelCache {
|
|
public:
|
|
virtual ~ModelCache() = default;
|
|
|
|
inline Tester& ReuseGeneratedModel(bool reuse) {
|
|
reuse_generated_model_ = reuse;
|
|
return *static_cast<Tester*>(this);
|
|
}
|
|
|
|
bool ReuseGeneratedModel() const { return reuse_generated_model_; }
|
|
|
|
const Model* GetModel() {
|
|
if (model_buffer_.empty() || !ReuseGeneratedModel()) {
|
|
model_buffer_ = CreateTfLiteModel();
|
|
}
|
|
return tflite::GetModel(model_buffer_.data());
|
|
}
|
|
|
|
virtual std::vector<char> CreateTfLiteModel() const = 0;
|
|
|
|
protected:
|
|
bool reuse_generated_model_ = false;
|
|
std::vector<char> model_buffer_;
|
|
};
|
|
|
|
} // namespace xnnpack
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_DELEGATES_XNNPACK_TEST_UTIL_H_
|