OWL
OptiX7 Wrapper Library
|
Go to the documentation of this file.
19 #ifndef _USE_MATH_DEFINES
20 # define _USE_MATH_DEFINES
38 #ifndef WIN32_LEAN_AND_MEAN
39 #define WIN32_LEAN_AND_MEAN
52 # define OWL_DLL_EXPORT __declspec(dllexport)
53 # define OWL_DLL_IMPORT __declspec(dllimport)
54 #elif defined(__clang__) || defined(__GNUC__)
55 # define OWL_DLL_EXPORT __attribute__((visibility("default")))
56 # define OWL_DLL_IMPORT __attribute__((visibility("default")))
58 # define OWL_DLL_EXPORT
59 # define OWL_DLL_IMPORT
63 # define OWL_INTERFACE
81 # define __PRETTY_FUNCTION__ __FUNCTION__
86 # define PRINT(var) std::cout << #var << "=" << var << std::endl;
88 # define PING std::cout << __FILE__ << "::" << __LINE__ << ": " << __FUNCTION__ << std::endl;
90 # define PING std::cout << __FILE__ << "::" << __LINE__ << ": " << __PRETTY_FUNCTION__ << std::endl;
94 #if defined(__CUDA_ARCH__)
95 # define __owl_device __device__
96 # define __owl_host __host__
102 # define __both__ __owl_host __owl_device
106 #define MAYBE_UNUSED __attribute__((unused))
114 #define OWL_NOTIMPLEMENTED throw std::runtime_error(std::string(__PRETTY_FUNCTION__)+" not implemented")
116 #define OWL_TERMINAL_RED "\033[0;31m"
117 #define OWL_TERMINAL_GREEN "\033[0;32m"
118 #define OWL_TERMINAL_LIGHT_GREEN "\033[1;32m"
119 #define OWL_TERMINAL_YELLOW "\033[1;33m"
120 #define OWL_TERMINAL_BLUE "\033[0;34m"
121 #define OWL_TERMINAL_LIGHT_BLUE "\033[1;34m"
122 #define OWL_TERMINAL_RESET "\033[0m"
123 #define OWL_TERMINAL_DEFAULT OWL_TERMINAL_RESET
124 #define OWL_TERMINAL_BOLD "\033[1;1m"
126 #define OWL_TERMINAL_MAGENTA "\e[35m"
127 #define OWL_TERMINAL_LIGHT_MAGENTA "\e[95m"
128 #define OWL_TERMINAL_CYAN "\e[36m"
130 #define OWL_TERMINAL_LIGHT_RED "\033[1;31m"
133 # define OWL_ALIGN(alignment) __declspec(align(alignment))
135 # define OWL_ALIGN(alignment) __attribute__((aligned(alignment)))
189 namespace polymorphic {
191 inline __both__ float sqrt(
const float f) { return ::sqrtf(f); }
204 # define osp_snprintf sprintf_s
206 # define osp_snprintf snprintf
211 const double absVal =
abs(val);
214 if (absVal >= 1e+18f)
osp_snprintf(result,1000,
"%.1f%c",
float(val/1e18f),
'E');
215 else if (absVal >= 1e+15f)
osp_snprintf(result,1000,
"%.1f%c",
float(val/1e15f),
'P');
216 else if (absVal >= 1e+12f)
osp_snprintf(result,1000,
"%.1f%c",
float(val/1e12f),
'T');
217 else if (absVal >= 1e+09f)
osp_snprintf(result,1000,
"%.1f%c",
float(val/1e09f),
'G');
218 else if (absVal >= 1e+06f)
osp_snprintf(result,1000,
"%.1f%c",
float(val/1e06f),
'M');
219 else if (absVal >= 1e+03f)
osp_snprintf(result,1000,
"%.1f%c",
float(val/1e03f),
'k');
220 else if (absVal <= 1e-12f)
osp_snprintf(result,1000,
"%.1f%c",
float(val*1e15f),
'f');
221 else if (absVal <= 1e-09f)
osp_snprintf(result,1000,
"%.1f%c",
float(val*1e12f),
'p');
222 else if (absVal <= 1e-06f)
osp_snprintf(result,1000,
"%.1f%c",
float(val*1e09f),
'n');
223 else if (absVal <= 1e-03f)
osp_snprintf(result,1000,
"%.1f%c",
float(val*1e06f),
'u');
224 else if (absVal <= 1e-00f)
osp_snprintf(result,1000,
"%.1f%c",
float(val*1e03f),
'm');
235 if (s >= (1024LL*1024LL*1024LL*1024LL)) {
236 osp_snprintf(buf, 1000,
"%.2fT",s/(1024.f*1024.f*1024.f*1024.f));
237 }
else if (s >= (1024LL*1024LL*1024LL)) {
238 osp_snprintf(buf, 1000,
"%.2fG",s/(1024.f*1024.f*1024.f));
239 }
else if (s >= (1024LL*1024LL)) {
241 }
else if (s >= (1024LL)) {
252 SYSTEMTIME tp; GetSystemTime(&tp);
256 size_t numSecsSince2020
258 + (60ull) * tp.wMinute
259 + (60ull * 60ull) * tp.wHour
260 + (60ull * 60ul * 24ull) * tp.wDay
261 + (60ull * 60ul * 24ull * 365ull) * (tp.wYear - 2020);
262 return double(numSecsSince2020 + tp.wMilliseconds * 1e-3);
264 struct timeval tp; gettimeofday(&tp,
nullptr);
265 return double(tp.tv_sec) + double(tp.tv_usec)/1E6;
269 inline bool hasSuffix(
const std::string &s,
const std::string &suffix)
271 return s.substr(s.size()-suffix.size()) == suffix;
bool hasSuffix(const std::string &s, const std::string &suffix)
Definition: owl-common.h:269
std::string prettyDouble(const double val)
Definition: owl-common.h:210
__both__ T abs(const QuaternionT< T > &a)
Definition: Quaternion.h:101
__both__ float saturate(const float &f)
Definition: owl-common.h:160
__both__ int32_t divRoundUp(int32_t a, int32_t b)
Definition: owl-common.h:168
std::string prettyNumber(const size_t s)
Definition: owl-common.h:232
double getCurrentTime()
Definition: owl-common.h:249
__both__ float sqrt(const float f)
Definition: owl-common.h:194
__both__ float rsqrt(const float f)
Definition: owl-common.h:198
#define osp_snprintf
Definition: owl-common.h:206
AffineSpaceT< L > rcp(const AffineSpaceT< L > &a)
Definition: AffineSpace.h:118
Definition: APIContext.cpp:36
__both__ double sqrt(const double d)
Definition: owl-common.h:195
#define __both__
Definition: owl-common.h:102