Files
tensorflow--tensorflow/tensorflow/lite/delegates/xnnpack/quantize_tester.h
T
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

114 lines
3.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.
==============================================================================*/
#ifndef TENSORFLOW_LITE_DELEGATES_XNNPACK_QUANTIZE_TESTER_H_
#define TENSORFLOW_LITE_DELEGATES_XNNPACK_QUANTIZE_TESTER_H_
#include <cstdint>
#include <vector>
#include <gtest/gtest.h>
#include "tensorflow/lite/core/c/common.h"
#include "tensorflow/lite/interpreter.h"
#include "tensorflow/lite/schema/schema_generated.h"
namespace tflite {
namespace xnnpack {
class QuantizeTester {
public:
QuantizeTester() = default;
QuantizeTester(const QuantizeTester&) = delete;
QuantizeTester& operator=(const QuantizeTester&) = delete;
inline QuantizeTester& Shape(std::initializer_list<int32_t> shape) {
for (auto it = shape.begin(); it != shape.end(); ++it) {
EXPECT_GT(*it, 0);
}
shape_ = std::vector<int32_t>(shape.begin(), shape.end());
size_ = QuantizeTester::ComputeSize(shape_);
return *this;
}
const std::vector<int32_t>& Shape() const { return shape_; }
int32_t Size() const { return size_; }
inline QuantizeTester& InputZeroPoint(int32_t input_zero_point) {
input_zero_point_ = input_zero_point;
return *this;
}
inline int32_t InputZeroPoint() const { return input_zero_point_; }
inline QuantizeTester& InputScale(float input_scale) {
input_scale_ = input_scale;
return *this;
}
inline float InputScale() const { return input_scale_; }
inline QuantizeTester& OutputZeroPoint(int32_t output_zero_point) {
output_zero_point_ = output_zero_point;
return *this;
}
inline int32_t OutputZeroPoint() const { return output_zero_point_; }
inline QuantizeTester& OutputScale(float output_scale) {
output_scale_ = output_scale;
return *this;
}
inline float OutputScale() const { return output_scale_; }
inline QuantizeTester& Unsigned(bool is_unsigned) {
unsigned_ = is_unsigned;
return *this;
}
inline bool Unsigned() const { return unsigned_; }
template <class T>
void PopulateInput(Interpreter* delegate_interpreter,
Interpreter* default_interpreter) const;
template <class T>
void InvokeAndCheckOutput(Interpreter* delegate_interpreter,
Interpreter* default_interpreter) const;
void Test(TensorType input_type, TensorType output_type,
TfLiteDelegate* delegate) const;
private:
std::vector<char> CreateTfLiteModel(TensorType input_type,
TensorType output_type) const;
static int32_t ComputeSize(const std::vector<int32_t>& shape);
std::vector<int32_t> shape_;
int32_t size_;
int32_t input_zero_point_ = 0;
float input_scale_ = 1.0f;
int32_t output_zero_point_ = 0;
float output_scale_ = 1.0f;
bool unsigned_ = false;
};
} // namespace xnnpack
} // namespace tflite
#endif // TENSORFLOW_LITE_DELEGATES_XNNPACK_QUANTIZE_TESTER_H_