Sign in
android
/
platform
/
external
/
pytorch
/
211bac53ef
/
.
/
caffe2
/
utils
/
cpuid_test.cc
blob: b464ecb9279e31e28584f8e6c1230374426bc65a [
file
] [
log
] [
blame
]
#include
<gtest/gtest.h>
#include
"caffe2/utils/cpuid.h"
namespace
caffe2
{
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
TEST
(
CpuIdTest
,
ShouldAlwaysHaveMMX
)
{
EXPECT_TRUE
(
GetCpuId
().
mmx
());
}
}
// namespace caffe2