STT-tensorflow/tensorflow/lite/toco/toco_port.h
Andrew Selle 137c142341 Make toco_port trivial initialize-able for test cases.
Problem is toco_port indirects a way of initializing google.
One impl has a static way of finding out if it is initialized (internal).
One impl has a non-static way to find out.

In the non-static way, test cases won't work since we initialize the tensorflow
google emulation elsewhere (gtest override)

PiperOrigin-RevId: 228306710
2019-01-08 04:02:52 -08:00

118 lines
3.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_TOCO_TOCO_PORT_H_
#define TENSORFLOW_LITE_TOCO_TOCO_PORT_H_
// Portability layer for toco tool. Mainly, abstract filesystem access so we
// can build and use on google internal environments and on OSX.
#include <string>
#include "google/protobuf/text_format.h"
#include "tensorflow/lite/toco/format_port.h"
#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/platform.h"
#if defined(PLATFORM_GOOGLE)
#include "absl/strings/cord.h"
#endif // PLATFORM_GOOGLE
#ifdef PLATFORM_GOOGLE
#define TFLITE_PROTO_NS proto2
#else
#define TFLITE_PROTO_NS google::protobuf
#endif
#ifdef __ANDROID__
#include <sstream>
namespace std {
template <typename T>
std::string to_string(T value)
{
std::ostringstream os ;
os << value ;
return os.str() ;
}
#ifdef __ARM_ARCH_7A__
double round(double x);
#endif
}
#endif
namespace toco {
namespace port {
// Things like tests use other initialization routines that need control
// of flags. However, for testing we still want to use toco_port.h facilities.
// This function sets initialized flag trivially.
void InitGoogleWasDoneElsewhere();
void InitGoogle(const char* usage, int* argc, char*** argv, bool remove_flags);
void CheckInitGoogleIsDone(const char* message);
namespace file {
class Options {};
inline Options Defaults() {
Options o;
return o;
}
tensorflow::Status GetContents(const string& filename, string* contents,
const Options& options);
tensorflow::Status SetContents(const string& filename, const string& contents,
const Options& options);
string JoinPath(const string& base, const string& filename);
tensorflow::Status Writable(const string& filename);
tensorflow::Status Readable(const string& filename, const Options& options);
tensorflow::Status Exists(const string& filename, const Options& options);
} // namespace file
// Copy `src` string to `dest`. User must ensure `dest` has enough space.
#if defined(PLATFORM_GOOGLE)
void CopyToBuffer(const ::Cord& src, char* dest);
#endif // PLATFORM_GOOGLE
void CopyToBuffer(const string& src, char* dest);
inline uint32 ReverseBits32(uint32 n) {
n = ((n >> 1) & 0x55555555) | ((n & 0x55555555) << 1);
n = ((n >> 2) & 0x33333333) | ((n & 0x33333333) << 2);
n = ((n >> 4) & 0x0F0F0F0F) | ((n & 0x0F0F0F0F) << 4);
return (((n & 0xFF) << 24) | ((n & 0xFF00) << 8) | ((n & 0xFF0000) >> 8) |
((n & 0xFF000000) >> 24));
}
} // namespace port
inline bool ParseFromStringOverload(const std::string& in,
TFLITE_PROTO_NS::Message* proto) {
return TFLITE_PROTO_NS::TextFormat::ParseFromString(in, proto);
}
template <typename Proto>
bool ParseFromStringEitherTextOrBinary(const std::string& input_file_contents,
Proto* proto) {
if (proto->ParseFromString(input_file_contents)) {
return true;
}
if (ParseFromStringOverload(input_file_contents, proto)) {
return true;
}
return false;
}
} // namespace toco
#endif // TENSORFLOW_LITE_TOCO_TOCO_PORT_H_