mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
11 lines
195 B
C++
11 lines
195 B
C++
|
|
#include <c10/util/BFloat16.h>
|
||
|
|
#include <type_traits>
|
||
|
|
|
||
|
|
namespace c10 {
|
||
|
|
|
||
|
|
static_assert(
|
||
|
|
std::is_standard_layout_v<BFloat16>,
|
||
|
|
"c10::BFloat16 must be standard layout.");
|
||
|
|
|
||
|
|
} // namespace c10
|