From 70c54adc711ade72a104f38bb50d94f76dc0a448 Mon Sep 17 00:00:00 2001
From: foreman
Date: Wed, 1 May 2019 18:43:47 -0400
Subject: [PATCH] P4 to Git Change 1777158 by cpaquot@cpaquot-ocl-lc-lnx on
2019/05/01 17:12:01
SWDEV-188219 - [HIP] Add hipStreamCreateWithPriority. NOP right now.
Affected files ...
... //depot/stg/opencl/drivers/opencl/api/hip/hip_device_runtime.cpp#14 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_hcc.def.in#13 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_hcc.map.in#14 edit
... //depot/stg/opencl/drivers/opencl/api/hip/hip_stream.cpp#17 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/commandqueue.hpp#21 edit
[ROCm/clr commit: d3774315a085d6c8be409278b28132ea66df3c99]
---
projects/clr/rocclr/runtime/platform/commandqueue.hpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/clr/rocclr/runtime/platform/commandqueue.hpp b/projects/clr/rocclr/runtime/platform/commandqueue.hpp
index 8413a02112..d27850b1f1 100644
--- a/projects/clr/rocclr/runtime/platform/commandqueue.hpp
+++ b/projects/clr/rocclr/runtime/platform/commandqueue.hpp
@@ -31,7 +31,7 @@ class DeviceQueue;
class CommandQueue : public RuntimeObject {
public:
static const uint RealTimeDisabled = 0xffffffff;
- enum class Priority : uint { Normal = 0, Medium };
+ enum class Priority : uint { Normal = 0, Medium, High };
struct Properties {
typedef cl_command_queue_properties value_type;
@@ -250,4 +250,4 @@ class DeviceQueue : public CommandQueue {
};
} // namespace amd
-#endif // COMMAND_QUEUE_HPP_
\ No newline at end of file
+#endif // COMMAND_QUEUE_HPP_