CpuId.cpp 1.9 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#include "paddle/utils/CpuId.h"
#include "paddle/utils/Util.h"

#ifdef _WIN32

17 18
#include <intrin.h>

L
liaogang 已提交
19
/// for MSVC
Y
Yu Yang 已提交
20
#define CPUID(info, x) __cpuidex(info, x, 0)
L
liaogang 已提交
21 22 23 24 25 26

#else

#include <cpuid.h>

/// for GCC/Clang
Y
Yu Yang 已提交
27
#define CPUID(info, x) __cpuid_count(x, 0, info[0], info[1], info[2], info[3])
L
liaogang 已提交
28 29 30 31 32 33

#endif

namespace paddle {

SIMDFlags::SIMDFlags() {
Y
Yu Yang 已提交
34 35
  unsigned int cpuInfo[4];
  // CPUID: https://en.wikipedia.org/wiki/CPUID
36
  // clang-format off
Y
Yu Yang 已提交
37
  CPUID(cpuInfo, 0x00000001);
38 39 40 41
  simd_flags_ |= cpuInfo[3] & (1 << 25) ? SIMD_SSE   : SIMD_NONE;
  simd_flags_ |= cpuInfo[3] & (1 << 26) ? SIMD_SSE2  : SIMD_NONE;
  simd_flags_ |= cpuInfo[2] & (1 <<  0) ? SIMD_SSE3  : SIMD_NONE;
  simd_flags_ |= cpuInfo[2] & (1 <<  9) ? SIMD_SSSE3 : SIMD_NONE;
Y
Yu Yang 已提交
42 43
  simd_flags_ |= cpuInfo[2] & (1 << 19) ? SIMD_SSE41 : SIMD_NONE;
  simd_flags_ |= cpuInfo[2] & (1 << 20) ? SIMD_SSE42 : SIMD_NONE;
44 45
  simd_flags_ |= cpuInfo[2] & (1 << 12) ? SIMD_FMA3  : SIMD_NONE;
  simd_flags_ |= cpuInfo[2] & (1 << 28) ? SIMD_AVX   : SIMD_NONE;
Y
Yu Yang 已提交
46 47

  CPUID(cpuInfo, 0x00000007);
48 49
  simd_flags_ |= cpuInfo[1] & (1 <<  5) ? SIMD_AVX2  : SIMD_NONE;
  simd_flags_ |= cpuInfo[1] & (1 << 16) ? SIMD_AVX512: SIMD_NONE;
Y
Yu Yang 已提交
50 51

  CPUID(cpuInfo, 0x80000001);
52 53
  simd_flags_ |= cpuInfo[2] & (1 << 16) ? SIMD_FMA4  : SIMD_NONE;
  // clang-fotmat on
54 55 56
}

SIMDFlags const* SIMDFlags::instance() {
Y
Yu Yang 已提交
57 58
  static SIMDFlags instance;
  return &instance;
L
liaogang 已提交
59 60
}

Y
Yu Yang 已提交
61
}  // namespace paddle