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
Dieser Commit ist enthalten in:
foreman
2017-03-31 17:32:40 -04:00
Ursprung 1c46212c4b
Commit 9be20b9fd1
3 geänderte Dateien mit 1 neuen und 7 gelöschten Zeilen
@@ -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
Datei anzeigen
@@ -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_;
};
-3
Datei anzeigen
@@ -205,9 +205,6 @@ release(bool, OCL_CODE_CACHE_ENABLE, false, \
"1 = Enable compiler code cache") \
release(bool, OCL_CODE_CACHE_RESET, false, \
"1 = Reset the compiler code cache storage") \
release(bool, GPU_DISABLE_SDMA_MEMORY_TO_IMAGE, true, \
"0 = Enable sDMA for Memory to Image and Image to Memory copies")
namespace amd {