Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions GPU/GPUTracking/Definitions/GPUDefParametersDefault.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
#include "GPUCommonDef.h"
#include "GPUDefMacros.h"

// Launch bound definition, 3 optional parameters: maxThreads per block, minBlocks per multiprocessor, force number of blocks (not passed to compiler as launch bounds)

// GPU Run Configuration
#ifdef GPUCA_GPUCODE
#if defined(GPUCA_GPUTYPE_MI2xx)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static GPUDefParameters GPUDefParametersLoad()
if (par.par_LB_minBlocks[i] > 0) { \
o << ", " << par.par_LB_minBlocks[i]; \
} \
if (par.par_LB_forceBlocks[i] > 0) { \
if (!forRTC && par.par_LB_forceBlocks[i] > 0) { \
o << ", " << par.par_LB_forceBlocks[i]; \
} \
o << "\n"; \
Expand Down