48 lines
1.8 KiB
C++
48 lines
1.8 KiB
C++
/* Copyright 2022 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_CC_SAVED_MODEL_FINGERPRINTING_H_
|
|
#define TENSORFLOW_CC_SAVED_MODEL_FINGERPRINTING_H_
|
|
|
|
#include <string>
|
|
|
|
#include "absl/status/statusor.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "tensorflow/core/protobuf/fingerprint.pb.h"
|
|
|
|
namespace tensorflow::saved_model::fingerprinting {
|
|
|
|
// Creates a FingerprintDef proto from a SavedModel (regular or chunked) and the
|
|
// checkpoint meta file (.index) in `export_dir`.
|
|
absl::StatusOr<FingerprintDef> CreateFingerprintDef(
|
|
absl::string_view export_dir);
|
|
|
|
// Loads the `fingerprint.pb` from `export_dir`, returns an error if there is
|
|
// none.
|
|
absl::StatusOr<FingerprintDef> ReadSavedModelFingerprint(
|
|
absl::string_view export_dir);
|
|
|
|
// Canonical fingerprinting ID for a SavedModel.
|
|
std::string Singleprint(uint64_t graph_def_program_hash,
|
|
uint64_t signature_def_hash,
|
|
uint64_t saved_object_graph_hash,
|
|
uint64_t checkpoint_hash);
|
|
std::string Singleprint(const FingerprintDef& fingerprint);
|
|
absl::StatusOr<std::string> Singleprint(absl::string_view export_dir);
|
|
|
|
} // namespace tensorflow::saved_model::fingerprinting
|
|
|
|
#endif // TENSORFLOW_CC_SAVED_MODEL_FINGERPRINTING_H_
|