Sign in
android
/
platform
/
external
/
pytorch
/
refs/heads/sdk-release
/
.
/
c10
/
util
/
Bfloat16.cpp
blob: ae6a839455dccd3e59b8fec13bdab00ee9a32c92 [
file
] [
log
] [
blame
] [
edit
]
#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