P4 to Git Change 1988234 by kjayapra@3_HIPWS_TXT_ROCM on 2019/08/23 12:12:45

SWDEV-201068 - Reverting back CL 1987582.

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/hip/hip_module.cpp#37 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocvirtual.cpp#84 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocvirtual.hpp#27 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/command.cpp#98 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/command.hpp#96 edit
This commit is contained in:
foreman
2019-08-23 12:15:29 -04:00
parent a3d3fba77b
commit f684278234
4 changed files with 9 additions and 14 deletions
+1 -5
View File
@@ -767,7 +767,6 @@ class NDRangeKernelCommand : public Command {
address parameters_;
uint32_t sharedMemBytes_;
uint32_t extraParam_;
bool svm_;
public:
enum {
@@ -778,7 +777,7 @@ class NDRangeKernelCommand : public Command {
//! Construct an ExecuteKernel command
NDRangeKernelCommand(HostQueue& queue, const EventWaitList& eventWaitList, Kernel& kernel,
const NDRangeContainer& sizes, uint32_t sharedMemBytes = 0,
uint32_t extraParam = 0, bool svm = false);
uint32_t extraParam = 0);
virtual void submit(device::VirtualDevice& device) { device.submitKernel(*this); }
@@ -809,9 +808,6 @@ class NDRangeKernelCommand : public Command {
void setLocalWorkSize(const NDRange& local) { sizes_.local() = local; }
cl_int captureAndValidate();
//! Return if NDRange is svm or not
bool isSvm() const { return svm_; }
};
class NativeFnCommand : public Command {