P4 to Git Change 1725257 by gandryey@gera-w8 on 2019/01/02 17:28:57

SWDEV-79445 - OCL generic changes and code clean-up
	- Move the constructor body of LightningProgram to the header

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocprogram.cpp#96 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocprogram.hpp#43 edit


[ROCm/clr commit: ad54eb030b]
Esse commit está contido em:
foreman
2019-01-02 18:29:04 -05:00
commit a372c1d4b1
2 arquivos alterados com 6 adições e 8 exclusões
@@ -80,7 +80,12 @@ private:
class LightningProgram : public roc::Program {
public:
LightningProgram(roc::NullDevice& device);
LightningProgram(roc::NullDevice& device)
: roc::Program(device) {
isLC_ = true;
xnackEnabled_ = dev().deviceInfo().xnackEnabled_;
machineTarget_ = dev().deviceInfo().machineTargetLC_;
}
virtual ~LightningProgram() {}
protected: