mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
This PR clears warnings and enables clang-tidy on c10/util/Float8*.h. Pull Request resolved: https://github.com/pytorch/pytorch/pull/120573 Approved by: https://github.com/drisspg
10 lines
181 B
C++
10 lines
181 B
C++
#include <c10/util/Float8_e5m2.h>
|
|
|
|
namespace c10 {
|
|
|
|
static_assert(
|
|
std::is_standard_layout_v<Float8_e5m2>,
|
|
"c10::Float8_e5m2 must be standard layout.");
|
|
|
|
} // namespace c10
|