Reduce verbosity in a util function.

PiperOrigin-RevId: 355424158
Change-Id: I6b1a630bb280cde2f73c28aa3b674cb5cb6a58f8
This commit is contained in:
A. Unique TensorFlower 2021-02-03 10:17:44 -08:00 committed by TensorFlower Gardener
parent 428ce93ee4
commit a640755988

View File

@ -74,7 +74,8 @@ std::string CreateConfigPrefix(const TPUCompileMetadataProto& metadata) {
uint64 CreateFingerprintWithNameAndShapes(
uint64 name, const std::vector<tensorflow::TensorShape>& 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(
absl::StrCat(name, "_", shape_prefix));
}