Skip to content

Commit

Permalink
SWDEV-484055 Fixes aborts in CPX mode
Browse files Browse the repository at this point in the history
AMD_MAX_HSA_AGENTS=16 is too small for CPX which is 64
This patch moves to 256.

Change-Id: Ibcf51bc060a071698b439ba2486a1635765955f0
  • Loading branch information
ronlieb authored and Makarand Maydeo committed Oct 1, 2024
1 parent 7fe5dc8 commit 1e2c947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmp/libomptarget/hostexec/services/amdgcn_hostexec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <thread>

/// Defines how many GPUs are maximally supported on a system
#define AMD_MAX_HSA_AGENTS 16
#define AMD_MAX_HSA_AGENTS 256

/** Opaque wrapper for signal */
typedef struct {
Expand Down

0 comments on commit 1e2c947

Please sign in to comment.