P4 to Git Change 1393470 by asalmanp@asalmanp-opencl-stg on 2017/03/31 17:25:32

SWDEV-107075 - removing unused environment variable and code

	ReviewBoardURL = http://ocltc.amd.com/reviews/r/12549/

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.cpp#20 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.hpp#9 edit
... //depot/stg/opencl/drivers/opencl/runtime/utils/flags.hpp#269 edit
This commit is contained in:
foreman
2017-03-31 17:32:40 -04:00
parent 1c46212c4b
commit 9be20b9fd1
3 changed files with 1 additions and 7 deletions
@@ -135,8 +135,6 @@ Settings::Settings()
// Disable SDMA workaround by default
sdamPageFaultWar_ = false;
// Disable SDMA copy for Image to Mem and Mem to Image by default
disableSdmaMemoryToImage_ = false;
}
bool
+1 -2
View File
@@ -67,8 +67,7 @@ public:
uint useDeviceQueue_: 1; //!< Submit to separate device queue
uint singleFpDenorm_: 1; //!< Support Single FP Denorm
uint sdamPageFaultWar_: 1; //!< SDMA page fault workaround
uint disableSdmaMemoryToImage_ : 1;//!< Disable sDMA copy for Memory to Image
uint reserved_: 8;
uint reserved_: 9;
};
uint value_;
};