Reduce verbosity in a util function.
PiperOrigin-RevId: 355424158 Change-Id: I6b1a630bb280cde2f73c28aa3b674cb5cb6a58f8
This commit is contained in:
parent
428ce93ee4
commit
a640755988
@ -74,7 +74,8 @@ std::string CreateConfigPrefix(const TPUCompileMetadataProto& metadata) {
|
|||||||
uint64 CreateFingerprintWithNameAndShapes(
|
uint64 CreateFingerprintWithNameAndShapes(
|
||||||
uint64 name, const std::vector<tensorflow::TensorShape>& shapes) {
|
uint64 name, const std::vector<tensorflow::TensorShape>& shapes) {
|
||||||
std::string shape_prefix = CreateShapePrefix(shapes);
|
std::string shape_prefix = CreateShapePrefix(shapes);
|
||||||
LOG(INFO) << "name: " << name << ", shape_prefix: " << shape_prefix;
|
VLOG(2) << "CreateFingerprintWithNameAndShapes, name: " << name
|
||||||
|
<< ", shape_prefix: " << shape_prefix;
|
||||||
return TpuCompileInterface::Get()->FingerprintString(
|
return TpuCompileInterface::Get()->FingerprintString(
|
||||||
absl::StrCat(name, "_", shape_prefix));
|
absl::StrCat(name, "_", shape_prefix));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user