SWDEV-301289 - Treewide macro rename

ATI_OS_WIN -> _WIN32
ATI_OS_LINUX -> __linux__

We should not rely on non-standard macros for platform detections.

Change-Id: If1d06e2e1187268df62a59609ea5496ab7eb709d
此提交包含在:
Vladislav Sytchenko
2021-08-30 14:04:35 -04:00
提交者 Jason Tang
父節點 159f7f24cd
當前提交 c4aa6febe5
共有 27 個檔案被更改,包括 92 行新增93 行删除
+2 -2
查看文件
@@ -109,7 +109,7 @@ void OCLStablePState::run(void) {
cl_set_device_clock_mode_output_amd setClockModeOutput = {};
error_ = _wrapper->clSetDeviceClockModeAMD(gpu_device, setClockModeInput,
&setClockModeOutput);
#ifdef ATI_OS_WIN
#ifdef _WIN32
CHECK_RESULT(error_ != CL_SUCCESS, "SetClockMode profiling failed\n");
#else
error_ = CL_SUCCESS;
@@ -119,7 +119,7 @@ void OCLStablePState::run(void) {
setClockModeOutput = {};
error_ = _wrapper->clSetDeviceClockModeAMD(gpu_device, setClockModeInput,
&setClockModeOutput);
#ifdef ATI_OS_WIN
#ifdef _WIN32
CHECK_RESULT(error_ != CL_SUCCESS, "SetClockMode default failed\n");
#else
error_ = CL_SUCCESS;