mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/35115 This commit runs the newly added tools/clang_format.py on the JIT codebase and includes all of the formatting changes thus produced. Testing: Ran the script, CI. Test Plan: Imported from OSS Reviewed By: eellison Differential Revision: D20568523 Pulled By: SplitInfinity fbshipit-source-id: e09bdb982ccf090eecfb7c7b461b8d0681eef82b
13 lines
242 B
C++
13 lines
242 B
C++
#pragma once
|
|
|
|
#include <ATen/core/Macros.h>
|
|
|
|
namespace torch {
|
|
namespace jit {
|
|
|
|
CAFFE2_API double strtod_c(const char* nptr, char** endptr);
|
|
CAFFE2_API float strtof_c(const char* nptr, char** endptr);
|
|
|
|
} // namespace jit
|
|
} // namespace torch
|