STT-tensorflow/tensorflow/lite/testing/util.h
A. Unique TensorFlower 1f422c750c Internal change
PiperOrigin-RevId: 299151337
Change-Id: I6b76904594dc4f71b460a778b757ebb05ad3fbbd
2020-03-05 11:36:56 -08:00

61 lines
1.7 KiB
C++

/* Copyright 2017 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_TESTING_UTIL_H_
#define TENSORFLOW_LITE_TESTING_UTIL_H_
#include <cstdio>
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/lite/core/api/error_reporter.h"
#include "tensorflow/lite/string_type.h"
namespace tflite {
// An ErrorReporter that collects error message in a string, in addition
// to printing to stderr.
class TestErrorReporter : public ErrorReporter {
public:
int Report(const char* format, va_list args) override {
char buffer[1024];
int size = vsnprintf(buffer, sizeof(buffer), format, args);
fprintf(stderr, "%s", buffer);
error_messages_ += buffer;
num_calls_++;
return size;
}
void Reset() {
num_calls_ = 0;
error_messages_.clear();
}
int num_calls() const { return num_calls_; }
const string& error_messages() const { return error_messages_; }
private:
int num_calls_ = 0;
string error_messages_;
};
inline void LogToStderr() {
#ifdef PLATFORM_GOOGLE
absl::SetFlag(&FLAGS_logtostderr, true);
#endif
}
} // namespace tflite
#endif // TENSORFLOW_LITE_TESTING_UTIL_H_