Skip to content

Commit

Permalink
fix CI issues
Browse files Browse the repository at this point in the history
Issues become visiable due to reactivation of CI tests for all
compilers.

ci: full-compile
  • Loading branch information
psychocoderHPC committed Feb 5, 2025
1 parent 8922c6d commit dfc873b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/picongpu/particles/Particles.tpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ namespace picongpu
T_MapperFactory const& mapperFactory,
bool const onlyProcessMustShiftSupercells)
{
ParticlesBaseType::template shiftParticles(mapperFactory, onlyProcessMustShiftSupercells);
ParticlesBaseType::shiftParticles(mapperFactory, onlyProcessMustShiftSupercells);
}

template<typename T_Name, typename T_Flags, typename T_Attributes>
Expand Down
2 changes: 1 addition & 1 deletion include/pmacc/particles/ParticlesBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ namespace pmacc
template<typename T_MapperFactory>
void shiftParticles(T_MapperFactory const& mapperFactory, bool onlyProcessMustShiftSupercells)
{
this->template shiftParticlesImpl(
this->shiftParticlesImpl(
StrideMapperFactory<T_MapperFactory, 3>{mapperFactory},
onlyProcessMustShiftSupercells);
}
Expand Down
4 changes: 2 additions & 2 deletions share/ci/n_wise_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ def is_valid_combination(row):

# clang as host compiler
if is_clang:
if os_name == "ubuntu" and os_version == 22.04 and v_compiler <= 12:
if os_name == "ubuntu" and os_version == 22.04 and v_compiler <= 13:
return True
if os_name == "ubuntu" and os_version == 24.04 and v_compiler >= 13:
if os_name == "ubuntu" and os_version == 24.04 and v_compiler >= 14:
return True
return False

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,7 @@ namespace mallocMC
// printf("Block %d, id %d: activeThreads=%d
// linearId=%d\n",blockIdx.x,threadIdx.x,activeThreads,linearId);
unsigned const temp
= this->template getAvailaibleSlotsDeviceFunction(acc, slotSize, linearId, activeThreads);
= this->getAvailaibleSlotsDeviceFunction(acc, slotSize, linearId, activeThreads);
if(temp)
alpaka::atomicOp<alpaka::AtomicAdd>(acc, &warpResults[wId], temp);

Expand Down

0 comments on commit dfc873b

Please sign in to comment.