We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33d9da commit d1f407fCopy full SHA for d1f407f
tensorflow_serving/servables/tensorflow/saved_model_config_util.cc
@@ -15,6 +15,7 @@ limitations under the License.
15
16
#include "tensorflow_serving/servables/tensorflow/saved_model_config_util.h"
17
18
+#include <cstdint>
19
#include <memory>
20
#include <string>
21
@@ -96,7 +97,7 @@ absl::StatusOr<SavedModelConfig> LoadSavedModelConfigOrDefault(
96
97
98
LOG(INFO) << "Loading model config from " << saved_model_config_path;
99
std::string content;
- tsl::uint64 file_size = 0;
100
+ uint64_t file_size = 0;
101
TF_RETURN_IF_ERROR(
102
tsl::Env::Default()->GetFileSize(saved_model_config_path, &file_size));
103
content.resize(file_size);
0 commit comments