mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/76376 This is only used in a few places and only aliases the c10 macros header. Differential Revision: [D35904936](https://our.internmc.facebook.com/intern/diff/D35904936/) Approved by: https://github.com/dreiss, https://github.com/malfet
13 lines
241 B
C++
13 lines
241 B
C++
#pragma once
|
|
|
|
#include <c10/macros/Macros.h>
|
|
|
|
namespace torch {
|
|
namespace jit {
|
|
|
|
TORCH_API double strtod_c(const char* nptr, char** endptr);
|
|
TORCH_API float strtof_c(const char* nptr, char** endptr);
|
|
|
|
} // namespace jit
|
|
} // namespace torch
|