Rename the protobuf message ProgramShape to ProgramShapeProto and create a new ProgramShape C++ class with an interface which mirrors the protobuf generated code interface. This CL is a step toward replacing Shape proto with a C++ class. ProgramShape needs to be migrated first because ProgramShape contains Shapes. PiperOrigin-RevId: 222435461
41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
/* Copyright 2018 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 "tensorflow/compiler/xla/client/xla_computation.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "absl/memory/memory.h"
|
|
#include "tensorflow/compiler/xla/status_macros.h"
|
|
#include "tensorflow/compiler/xla/util.h"
|
|
|
|
namespace xla {
|
|
|
|
StatusOr<ProgramShape> XlaComputation::GetProgramShape() const {
|
|
TF_RET_CHECK(proto_.has_host_program_shape());
|
|
return ProgramShape(proto_.host_program_shape());
|
|
}
|
|
|
|
StatusOr<std::unique_ptr<HloSnapshot>> XlaComputation::Snapshot() const {
|
|
if (IsNull()) {
|
|
return InvalidArgument("Computation is invalid.");
|
|
}
|
|
auto session = absl::make_unique<HloSnapshot>();
|
|
*session->mutable_hlo()->mutable_hlo_module() = proto_;
|
|
return std::move(session);
|
|
}
|
|
|
|
} // namespace xla
|