1/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16#ifndef TENSORFLOW_CORE_PLATFORM_NUMBERS_H_
17#define TENSORFLOW_CORE_PLATFORM_NUMBERS_H_
18
19#include <string>
20
21#include "tensorflow/core/platform/stringpiece.h"
22#include "tensorflow/core/platform/types.h"
23#include "tensorflow/tsl/platform/numbers.h"
24
25namespace tensorflow {
26namespace strings {
27// NOLINTBEGIN(misc-unused-using-decls)
28using tsl::strings::DoubleToBuffer;
29using tsl::strings::FastInt32ToBufferLeft;
30using tsl::strings::FastInt64ToBufferLeft;
31using tsl::strings::FastUInt32ToBufferLeft;
32using tsl::strings::FastUInt64ToBufferLeft;
33using tsl::strings::FloatToBuffer;
34using tsl::strings::FpToString;
35using tsl::strings::HexStringToUint64;
36using tsl::strings::HumanReadableElapsedTime;
37using tsl::strings::HumanReadableNum;
38using tsl::strings::HumanReadableNumBytes;
39using tsl::strings::kFastToBufferSize;
40using tsl::strings::ProtoParseNumeric;
41using tsl::strings::safe_strto32;
42using tsl::strings::safe_strto64;
43using tsl::strings::safe_strtod;
44using tsl::strings::safe_strtof;
45using tsl::strings::safe_strtou32;
46using tsl::strings::safe_strtou64;
47using tsl::strings::SafeStringToNumeric;
48using tsl::strings::StringToFp;
49using tsl::strings::Uint64ToHexString;
50// NOLINTEND(misc-unused-using-decls)
51} // namespace strings
52} // namespace tensorflow
53
54#endif // TENSORFLOW_CORE_PLATFORM_NUMBERS_H_
55