48 lines
1.8 KiB
C++
48 lines
1.8 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.
|
|
==============================================================================*/
|
|
|
|
// Usage: show_literal <path-to-serialized-literal-proto>
|
|
//
|
|
// Dumps out the Literal::ToString of a tensorflow::WriteBinaryProto format
|
|
// Literal serialized on disk.
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
#include "tensorflow/compiler/xla/literal.h"
|
|
#include "tensorflow/compiler/xla/types.h"
|
|
#include "tensorflow/compiler/xla/xla_data.pb.h"
|
|
#include "tensorflow/core/lib/core/status.h"
|
|
#include "tensorflow/core/platform/env.h"
|
|
#include "tensorflow/core/platform/init_main.h"
|
|
#include "tensorflow/core/platform/logging.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
tensorflow::port::InitMain(argv[0], &argc, &argv);
|
|
|
|
if (argc < 2) {
|
|
LOG(QFATAL) << "Usage: " << argv[0]
|
|
<< " <path-to-serialized-literal-proto>";
|
|
}
|
|
|
|
xla::LiteralProto literal_proto;
|
|
TF_CHECK_OK(tensorflow::ReadBinaryProto(tensorflow::Env::Default(), argv[1],
|
|
&literal_proto));
|
|
xla::Literal literal =
|
|
xla::Literal::CreateFromProto(literal_proto).ConsumeValueOrDie();
|
|
LOG(INFO) << "literal: " << literal_proto.ShortDebugString();
|
|
fprintf(stderr, "%s\n", literal.ToString().c_str());
|
|
}
|