Skip to content

Commit

Permalink
arch: Decrease Intel MAX GPU limits
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Jan 30, 2024
1 parent debfb35 commit 446c97d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions devito/arch/archinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,10 +899,10 @@ def march(cls):
AMDGPUX = AmdDevice('amdgpuX')

INTELGPUX = IntelDevice('intelgpuX')
PVC = IntelDevice('pvc', max_threads_per_block=4096) # Legacy codename for MAX GPUs
INTELGPUMAX = IntelDevice('intelgpuMAX', max_threads_per_block=4096)
MAX1100 = IntelDevice('max1100', max_threads_per_block=4096)
MAX1550 = IntelDevice('max1550', max_threads_per_block=4096)
PVC = IntelDevice('pvc') # Legacy codename for MAX GPUs
INTELGPUMAX = IntelDevice('intelgpuMAX')
MAX1100 = IntelDevice('max1100')
MAX1550 = IntelDevice('max1550')

platform_registry = Platform.registry
platform_registry['cpu64'] = get_platform # Autodetection
Expand Down

0 comments on commit 446c97d

Please sign in to comment.