2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* 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
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* 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
|
2014-12-25 02:50:24 +01:00
|
|
|
* limitations under the License.
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
Cycles: Make all #include statements relative to cycles source directory
The idea is to make include statements more explicit and obvious where the
file is coming from, additionally reducing chance of wrong header being
picked up.
For example, it was not obvious whether bvh.h was refferring to builder
or traversal, whenter node.h is a generic graph node or a shader node
and cases like that.
Surely this might look obvious for the active developers, but after some
time of not touching the code it becomes less obvious where file is coming
from.
This was briefly mentioned in T50824 and seems @brecht is fine with such
explicitness, but need to agree with all active developers before committing
this.
Please note that this patch is lacking changes related on GPU/OpenCL
support. This will be solved if/when we all agree this is a good idea to move
forward.
Reviewers: brecht, lukasstockner97, maiself, nirved, dingto, juicyfruit, swerner
Reviewed By: lukasstockner97, maiself, nirved, dingto
Subscribers: brecht
Differential Revision: https://developer.blender.org/D2586
2017-03-28 20:39:14 +02:00
|
|
|
#include "util/util_system.h"
|
2016-06-04 01:29:13 +02:00
|
|
|
|
Cycles: Make all #include statements relative to cycles source directory
The idea is to make include statements more explicit and obvious where the
file is coming from, additionally reducing chance of wrong header being
picked up.
For example, it was not obvious whether bvh.h was refferring to builder
or traversal, whenter node.h is a generic graph node or a shader node
and cases like that.
Surely this might look obvious for the active developers, but after some
time of not touching the code it becomes less obvious where file is coming
from.
This was briefly mentioned in T50824 and seems @brecht is fine with such
explicitness, but need to agree with all active developers before committing
this.
Please note that this patch is lacking changes related on GPU/OpenCL
support. This will be solved if/when we all agree this is a good idea to move
forward.
Reviewers: brecht, lukasstockner97, maiself, nirved, dingto, juicyfruit, swerner
Reviewed By: lukasstockner97, maiself, nirved, dingto
Subscribers: brecht
Differential Revision: https://developer.blender.org/D2586
2017-03-28 20:39:14 +02:00
|
|
|
#include "util/util_logging.h"
|
|
|
|
#include "util/util_types.h"
|
|
|
|
#include "util/util_string.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
#include <numaapi.h>
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
#ifdef _WIN32
|
2016-02-05 09:09:39 +01:00
|
|
|
# if(!defined(FREE_WINDOWS))
|
|
|
|
# include <intrin.h>
|
|
|
|
# endif
|
|
|
|
# include "util_windows.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
#elif defined(__APPLE__)
|
2016-02-05 09:09:39 +01:00
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <sys/types.h>
|
2011-04-27 11:58:34 +00:00
|
|
|
#else
|
2016-02-05 09:09:39 +01:00
|
|
|
# include <unistd.h>
|
2019-02-06 12:57:10 +01:00
|
|
|
# include <sys/ioctl.h>
|
2011-04-27 11:58:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
bool system_cpu_ensure_initialized()
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
2018-12-27 19:01:19 +01:00
|
|
|
static bool is_initialized = false;
|
|
|
|
static bool result = false;
|
2019-01-11 17:55:36 +01:00
|
|
|
if(is_initialized) {
|
2018-12-27 19:01:19 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
is_initialized = true;
|
|
|
|
const NUMAAPI_Result numa_result = numaAPI_Initialize();
|
|
|
|
result = (numa_result == NUMAAPI_SUCCESS);
|
|
|
|
return result;
|
2016-06-04 01:29:13 +02:00
|
|
|
}
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
/* Fallback solution, which doesn't use NUMA/CPU groups. */
|
|
|
|
static int system_cpu_thread_count_fallback()
|
2016-06-04 01:29:13 +02:00
|
|
|
{
|
2011-04-27 11:58:34 +00:00
|
|
|
#ifdef _WIN32
|
2018-12-27 19:01:19 +01:00
|
|
|
SYSTEM_INFO info;
|
|
|
|
GetSystemInfo(&info);
|
|
|
|
return info.dwNumberOfProcessors;
|
2011-04-27 11:58:34 +00:00
|
|
|
#elif defined(__APPLE__)
|
2016-06-06 13:52:57 +02:00
|
|
|
int count;
|
2011-04-27 11:58:34 +00:00
|
|
|
size_t len = sizeof(count);
|
|
|
|
int mib[2] = { CTL_HW, HW_NCPU };
|
|
|
|
sysctl(mib, 2, &count, &len, NULL, 0);
|
2016-06-04 01:29:13 +02:00
|
|
|
return count;
|
2011-04-27 11:58:34 +00:00
|
|
|
#else
|
2016-06-04 01:29:13 +02:00
|
|
|
return sysconf(_SC_NPROCESSORS_ONLN);
|
2011-04-27 11:58:34 +00:00
|
|
|
#endif
|
2016-06-04 01:29:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int system_cpu_thread_count()
|
|
|
|
{
|
2018-12-27 19:01:19 +01:00
|
|
|
const int num_nodes = system_cpu_num_numa_nodes();
|
|
|
|
int num_threads = 0;
|
2019-01-11 17:55:36 +01:00
|
|
|
for(int node = 0; node < num_nodes; ++node) {
|
|
|
|
if(!system_cpu_is_numa_node_available(node)) {
|
2018-12-27 19:01:19 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
num_threads += system_cpu_num_numa_node_processors(node);
|
2016-06-04 01:29:13 +02:00
|
|
|
}
|
2018-12-27 19:01:19 +01:00
|
|
|
return num_threads;
|
|
|
|
}
|
2016-06-04 01:29:13 +02:00
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
int system_cpu_num_numa_nodes()
|
|
|
|
{
|
2019-01-11 17:55:36 +01:00
|
|
|
if(!system_cpu_ensure_initialized()) {
|
2018-12-27 19:01:19 +01:00
|
|
|
/* Fallback to a single node with all the threads. */
|
|
|
|
return 1;
|
2016-06-04 01:29:13 +02:00
|
|
|
}
|
2018-12-27 19:01:19 +01:00
|
|
|
return numaAPI_GetNumNodes();
|
|
|
|
}
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
bool system_cpu_is_numa_node_available(int node)
|
|
|
|
{
|
2019-01-11 17:55:36 +01:00
|
|
|
if(!system_cpu_ensure_initialized()) {
|
2018-12-27 19:01:19 +01:00
|
|
|
return true;
|
2016-06-04 01:29:13 +02:00
|
|
|
}
|
2018-12-27 19:01:19 +01:00
|
|
|
return numaAPI_IsNodeAvailable(node);
|
|
|
|
}
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
int system_cpu_num_numa_node_processors(int node)
|
|
|
|
{
|
2019-01-11 17:55:36 +01:00
|
|
|
if(!system_cpu_ensure_initialized()) {
|
2018-12-27 19:01:19 +01:00
|
|
|
return system_cpu_thread_count_fallback();
|
|
|
|
}
|
|
|
|
return numaAPI_GetNumNodeProcessors(node);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2018-12-27 19:01:19 +01:00
|
|
|
bool system_cpu_run_thread_on_node(int node)
|
2016-11-22 16:03:16 +01:00
|
|
|
{
|
2019-01-11 17:55:36 +01:00
|
|
|
if(!system_cpu_ensure_initialized()) {
|
2018-12-27 19:01:19 +01:00
|
|
|
return true;
|
2016-11-22 16:03:16 +01:00
|
|
|
}
|
2018-12-27 19:01:19 +01:00
|
|
|
return numaAPI_RunThreadOnNode(node);
|
2016-11-22 16:03:16 +01:00
|
|
|
}
|
|
|
|
|
2019-02-06 12:57:10 +01:00
|
|
|
int system_console_width()
|
|
|
|
{
|
|
|
|
int columns = 0;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO csbi;
|
|
|
|
if(GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi)) {
|
|
|
|
columns = csbi.dwSize.X;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
struct winsize w;
|
|
|
|
if(ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) == 0) {
|
|
|
|
columns = w.ws_col;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return (columns > 0) ? columns : 80;
|
|
|
|
}
|
|
|
|
|
2019-01-11 17:55:36 +01:00
|
|
|
int system_cpu_num_active_group_processors()
|
|
|
|
{
|
|
|
|
if(!system_cpu_ensure_initialized()) {
|
|
|
|
return system_cpu_thread_count_fallback();
|
|
|
|
}
|
|
|
|
return numaAPI_GetNumCurrentNodesProcessors();
|
|
|
|
}
|
|
|
|
|
2011-09-04 15:39:09 +00:00
|
|
|
#if !defined(_WIN32) || defined(FREE_WINDOWS)
|
2011-04-27 11:58:34 +00:00
|
|
|
static void __cpuid(int data[4], int selector)
|
|
|
|
{
|
2018-08-30 12:50:36 +02:00
|
|
|
#if defined(__x86_64__)
|
2011-04-27 11:58:34 +00:00
|
|
|
asm("cpuid" : "=a" (data[0]), "=b" (data[1]), "=c" (data[2]), "=d" (data[3]) : "a"(selector));
|
2018-08-30 12:50:36 +02:00
|
|
|
#elif defined(__i386__)
|
2011-05-05 13:51:33 +00:00
|
|
|
asm("pushl %%ebx \n\t"
|
2018-08-30 12:50:36 +02:00
|
|
|
"cpuid \n\t"
|
|
|
|
"movl %%ebx, %1 \n\t"
|
|
|
|
"popl %%ebx \n\t"
|
|
|
|
: "=a" (data[0]), "=r" (data[1]), "=c" (data[2]), "=d" (data[3])
|
|
|
|
: "a"(selector)
|
|
|
|
: "ebx");
|
2011-05-05 13:51:33 +00:00
|
|
|
#else
|
|
|
|
data[0] = data[1] = data[2] = data[3] = 0;
|
|
|
|
#endif
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
string system_cpu_brand_string()
|
|
|
|
{
|
2018-08-30 12:50:36 +02:00
|
|
|
char buf[48] = {0};
|
|
|
|
int result[4] = {0};
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
__cpuid(result, 0x80000000);
|
|
|
|
|
|
|
|
if(result[0] >= (int)0x80000004) {
|
|
|
|
__cpuid((int*)(buf+0), 0x80000002);
|
|
|
|
__cpuid((int*)(buf+16), 0x80000003);
|
|
|
|
__cpuid((int*)(buf+32), 0x80000004);
|
|
|
|
|
|
|
|
string brand = buf;
|
|
|
|
|
|
|
|
/* make it a bit more presentable */
|
2015-05-21 23:43:18 +02:00
|
|
|
brand = string_remove_trademark(brand);
|
2011-04-27 11:58:34 +00:00
|
|
|
|
|
|
|
return brand;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "Unknown CPU";
|
|
|
|
}
|
|
|
|
|
2011-09-08 18:58:07 +00:00
|
|
|
int system_cpu_bits()
|
|
|
|
{
|
|
|
|
return (sizeof(void*)*8);
|
|
|
|
}
|
|
|
|
|
2013-10-05 19:56:34 +00:00
|
|
|
#if defined(__x86_64__) || defined(_M_X64) || defined(i386) || defined(_M_IX86)
|
2011-11-15 15:13:38 +00:00
|
|
|
|
|
|
|
struct CPUCapabilities {
|
|
|
|
bool x64;
|
|
|
|
bool mmx;
|
|
|
|
bool sse;
|
|
|
|
bool sse2;
|
|
|
|
bool sse3;
|
|
|
|
bool ssse3;
|
|
|
|
bool sse41;
|
|
|
|
bool sse42;
|
|
|
|
bool sse4a;
|
|
|
|
bool avx;
|
2015-05-11 15:49:36 +00:00
|
|
|
bool f16c;
|
2014-06-13 22:23:58 +02:00
|
|
|
bool avx2;
|
2011-11-15 15:13:38 +00:00
|
|
|
bool xop;
|
|
|
|
bool fma3;
|
|
|
|
bool fma4;
|
2014-06-13 22:23:58 +02:00
|
|
|
bool bmi1;
|
|
|
|
bool bmi2;
|
2011-11-15 15:13:38 +00:00
|
|
|
};
|
|
|
|
|
2013-02-04 16:12:37 +00:00
|
|
|
static CPUCapabilities& system_cpu_capabilities()
|
2011-11-15 15:13:38 +00:00
|
|
|
{
|
|
|
|
static CPUCapabilities caps;
|
|
|
|
static bool caps_init = false;
|
|
|
|
|
|
|
|
if(!caps_init) {
|
2015-02-11 11:28:42 +01:00
|
|
|
int result[4], num;
|
2011-11-15 15:13:38 +00:00
|
|
|
|
|
|
|
memset(&caps, 0, sizeof(caps));
|
|
|
|
|
|
|
|
__cpuid(result, 0);
|
|
|
|
num = result[0];
|
|
|
|
|
2012-06-06 22:38:39 +00:00
|
|
|
if(num >= 1) {
|
2011-11-15 15:13:38 +00:00
|
|
|
__cpuid(result, 0x00000001);
|
|
|
|
caps.mmx = (result[3] & ((int)1 << 23)) != 0;
|
|
|
|
caps.sse = (result[3] & ((int)1 << 25)) != 0;
|
|
|
|
caps.sse2 = (result[3] & ((int)1 << 26)) != 0;
|
|
|
|
caps.sse3 = (result[2] & ((int)1 << 0)) != 0;
|
|
|
|
|
|
|
|
caps.ssse3 = (result[2] & ((int)1 << 9)) != 0;
|
|
|
|
caps.sse41 = (result[2] & ((int)1 << 19)) != 0;
|
|
|
|
caps.sse42 = (result[2] & ((int)1 << 20)) != 0;
|
|
|
|
|
|
|
|
caps.fma3 = (result[2] & ((int)1 << 12)) != 0;
|
2014-02-25 17:57:05 +01:00
|
|
|
caps.avx = false;
|
2014-02-25 19:50:53 +01:00
|
|
|
bool os_uses_xsave_xrestore = (result[2] & ((int)1 << 27)) != 0;
|
2014-02-25 17:57:05 +01:00
|
|
|
bool cpu_avx_support = (result[2] & ((int)1 << 28)) != 0;
|
|
|
|
|
|
|
|
if( os_uses_xsave_xrestore && cpu_avx_support) {
|
|
|
|
// Check if the OS will save the YMM registers
|
|
|
|
uint32_t xcr_feature_mask;
|
2014-05-05 02:19:08 +10:00
|
|
|
#if defined(__GNUC__)
|
|
|
|
int edx; /* not used */
|
|
|
|
/* actual opcode for xgetbv */
|
|
|
|
__asm__ (".byte 0x0f, 0x01, 0xd0" : "=a" (xcr_feature_mask) , "=d" (edx) : "c" (0) );
|
|
|
|
#elif defined(_MSC_VER) && defined(_XCR_XFEATURE_ENABLED_MASK)
|
|
|
|
xcr_feature_mask = (uint32_t)_xgetbv(_XCR_XFEATURE_ENABLED_MASK); /* min VS2010 SP1 compiler is required */
|
|
|
|
#else
|
|
|
|
xcr_feature_mask = 0;
|
|
|
|
#endif
|
2014-02-25 17:57:05 +01:00
|
|
|
caps.avx = (xcr_feature_mask & 0x6) == 0x6;
|
|
|
|
}
|
2014-06-13 22:23:58 +02:00
|
|
|
|
2015-05-11 15:49:36 +00:00
|
|
|
caps.f16c = (result[2] & ((int)1 << 29)) != 0;
|
|
|
|
|
2014-06-13 22:23:58 +02:00
|
|
|
__cpuid(result, 0x00000007);
|
|
|
|
caps.bmi1 = (result[1] & ((int)1 << 3)) != 0;
|
|
|
|
caps.bmi2 = (result[1] & ((int)1 << 8)) != 0;
|
|
|
|
caps.avx2 = (result[1] & ((int)1 << 5)) != 0;
|
2011-11-15 15:13:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
caps_init = true;
|
|
|
|
}
|
|
|
|
|
2013-02-04 16:12:37 +00:00
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool system_cpu_support_sse2()
|
|
|
|
{
|
|
|
|
CPUCapabilities& caps = system_cpu_capabilities();
|
2018-01-19 15:02:23 +01:00
|
|
|
return caps.sse && caps.sse2;
|
2013-02-04 16:12:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool system_cpu_support_sse3()
|
|
|
|
{
|
|
|
|
CPUCapabilities& caps = system_cpu_capabilities();
|
2018-01-19 15:02:23 +01:00
|
|
|
return caps.sse && caps.sse2 && caps.sse3 && caps.ssse3;
|
2011-11-15 15:13:38 +00:00
|
|
|
}
|
|
|
|
|
2013-11-22 14:16:47 +01:00
|
|
|
bool system_cpu_support_sse41()
|
|
|
|
{
|
|
|
|
CPUCapabilities& caps = system_cpu_capabilities();
|
2018-01-19 15:02:23 +01:00
|
|
|
return caps.sse && caps.sse2 && caps.sse3 && caps.ssse3 && caps.sse41;
|
2013-11-22 14:16:47 +01:00
|
|
|
}
|
2014-01-16 17:04:11 +01:00
|
|
|
|
|
|
|
bool system_cpu_support_avx()
|
|
|
|
{
|
|
|
|
CPUCapabilities& caps = system_cpu_capabilities();
|
2018-01-19 15:02:23 +01:00
|
|
|
return caps.sse && caps.sse2 && caps.sse3 && caps.ssse3 &&
|
|
|
|
caps.sse41 && caps.avx;
|
2014-01-16 17:04:11 +01:00
|
|
|
}
|
2016-01-12 16:00:48 +05:00
|
|
|
|
2014-06-13 22:23:58 +02:00
|
|
|
bool system_cpu_support_avx2()
|
|
|
|
{
|
|
|
|
CPUCapabilities& caps = system_cpu_capabilities();
|
2018-01-19 15:02:23 +01:00
|
|
|
return caps.sse && caps.sse2 && caps.sse3 && caps.ssse3 && caps.sse41 &&
|
|
|
|
caps.avx && caps.f16c && caps.avx2 && caps.fma3 && caps.bmi1 &&
|
|
|
|
caps.bmi2;
|
2014-06-13 22:23:58 +02:00
|
|
|
}
|
2011-11-15 15:13:38 +00:00
|
|
|
#else
|
|
|
|
|
2013-06-04 11:21:13 +00:00
|
|
|
bool system_cpu_support_sse2()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool system_cpu_support_sse3()
|
2011-11-15 15:13:38 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-16 17:04:11 +01:00
|
|
|
bool system_cpu_support_sse41()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool system_cpu_support_avx()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-13 22:23:58 +02:00
|
|
|
bool system_cpu_support_avx2()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-16 17:04:11 +01:00
|
|
|
|
2011-11-15 15:13:38 +00:00
|
|
|
#endif
|
|
|
|
|
2017-11-04 00:33:38 +01:00
|
|
|
size_t system_physical_ram()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
MEMORYSTATUSEX ram;
|
|
|
|
ram.dwLength = sizeof (ram);
|
|
|
|
GlobalMemoryStatusEx(&ram);
|
|
|
|
return ram.ullTotalPhys * 1024;
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
uint64_t ram = 0;
|
|
|
|
size_t len = sizeof(ram);
|
2018-08-24 14:36:18 +02:00
|
|
|
if(sysctlbyname("hw.memsize", &ram, &len, NULL, 0) == 0) {
|
2017-11-04 00:33:38 +01:00
|
|
|
return ram;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
size_t ps = sysconf(_SC_PAGESIZE);
|
|
|
|
size_t pn = sysconf(_SC_PHYS_PAGES);
|
|
|
|
return ps * pn;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-04-27 11:58:34 +00:00
|
|
|
CCL_NAMESPACE_END
|