SWDEV-531711 - Fixing compilation error by moving static var to public. (#438)

[ROCm/clr commit: b72812d324]
Этот коммит содержится в:
Jayaprakash, Karthik
2025-05-30 02:12:50 -04:00
коммит произвёл GitHub
родитель 4a85b5c88a
Коммит 4691ca2f39
+1 -2
Просмотреть файл
@@ -1698,7 +1698,7 @@ class Device : public RuntimeObject {
// Max Scratch size is based on ISA and thus per device.
// Def value is as per GFX9 being the least among supported devices.
size_t maxStackSize_ = kMaxStackSize9X;
static bool device_not_usable_; //!< If set, we should not launch any commands anymore.
static cl_int gpu_error_; //!< Store the GPU error cause during kernel launch
typedef std::list<CommandQueue*> CommandQueues;
@@ -2224,7 +2224,6 @@ class Device : public RuntimeObject {
uint64_t initial_heap_size_{HIP_INITIAL_DM_SIZE}; //!< Initial device heap size
amd::Monitor activeQueuesLock_ {}; //!< Guards access to the activeQueues set
std::unordered_set<amd::CommandQueue*> activeQueues; //!< The set of active queues
static cl_int gpu_error_; //!< Store the GPU error cause during kernel launch
private:
const Isa *isa_; //!< Device isa