mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
This reverts commit 37aae5932c26c3729d68b6ebdf00e618fe229b1c. Reverted https://github.com/pytorch/pytorch/pull/116353 on behalf of https://github.com/izaitsevfb due to Reverting, breaks internal builds: error: implicit conversion from 'long long' to 'float' may lose precision [-Werror,-Wimplicit-int-float-conversion] ([comment](https://github.com/pytorch/pytorch/pull/116353#issuecomment-1876045800))
14 lines
163 B
C++
14 lines
163 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace c10 {
|
|
|
|
using std::stod;
|
|
using std::stoi;
|
|
using std::stoll;
|
|
using std::stoull;
|
|
using std::to_string;
|
|
|
|
} // namespace c10
|