aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc')
-rw-r--r--tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc76
1 files changed, 76 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc b/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc
new file mode 100644
index 0000000000..eb7bff053b
--- /dev/null
+++ b/tensorflow/compiler/xla/tools/hex_floats_to_packed_literal.cc
@@ -0,0 +1,76 @@
+/* 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.
+==============================================================================*/
+
+#include <stdio.h>
+#include <string>
+#include <vector>
+
+#include "tensorflow/compiler/xla/types.h"
+#include "tensorflow/core/lib/core/casts.h"
+#include "tensorflow/core/lib/core/status.h"
+#include "tensorflow/core/lib/core/stringpiece.h"
+#include "tensorflow/core/lib/io/buffered_inputstream.h"
+#include "tensorflow/core/lib/io/random_inputstream.h"
+#include "tensorflow/core/platform/env.h"
+#include "tensorflow/core/platform/init_main.h"
+#include "tensorflow/core/platform/logging.h"
+#include "tensorflow/core/util/command_line_flags.h"
+
+using xla::string;
+
+int main(int argc, char** argv) {
+ // Flags
+ string input_file = "";
+ string output_file = "";
+ const std::vector<tensorflow::Flag> flag_list = {
+ tensorflow::Flag("input_file", &input_file, "file to convert"),
+ tensorflow::Flag("output_file", &output_file, "converted file"),
+ };
+ string usage = tensorflow::Flags::Usage(argv[0], flag_list);
+ bool parse_ok = tensorflow::Flags::Parse(&argc, argv, flag_list);
+ tensorflow::port::InitMain(argv[0], &argc, &argv);
+ if (argc != 1 || !parse_ok) {
+ LOG(QFATAL) << usage;
+ }
+
+ if (input_file.empty()) {
+ LOG(QFATAL) << "--input_file is required";
+ }
+ if (output_file.empty()) {
+ LOG(QFATAL) << "--output_file is required";
+ }
+
+ std::unique_ptr<tensorflow::RandomAccessFile> file;
+ TF_CHECK_OK(
+ tensorflow::Env::Default()->NewRandomAccessFile(input_file, &file));
+
+ std::vector<float> floats;
+ string line;
+ tensorflow::io::RandomAccessInputStream stream(file.get());
+ tensorflow::io::BufferedInputStream buf(&stream, 1048576);
+ while (buf.ReadLine(&line).ok()) {
+ float value;
+ QCHECK(sscanf(line.c_str(), "%f", &value) != 1) << "invalid float value: "
+ << line;
+ floats.push_back(value);
+ }
+
+ tensorflow::StringPiece content(
+ tensorflow::bit_cast<const char*>(floats.data()),
+ floats.size() * sizeof(float));
+ TF_CHECK_OK(tensorflow::WriteStringToFile(tensorflow::Env::Default(),
+ output_file, content));
+ return 0;
+}