Skip to content

Commit e7d73f7

Browse files
committed
test(cuda): Reduce memory requirement.
1 parent b19bd91 commit e7d73f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/cuda/test_cuda_transeq.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ program test_cuda_tridiag
5151
pnext = modulo(nrank - nproc + 1, nproc)
5252
pprev = modulo(nrank - 1, nproc)
5353

54-
n_glob = 512*4
54+
n_glob = 512
5555
n = n_glob/nproc
5656
n_block = 512*512/SZ
5757
n_iters = 100

tests/cuda/test_cuda_tridiag.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ program test_cuda_tridiag
4646
pnext = modulo(nrank - nproc + 1, nproc)
4747
pprev = modulo(nrank - 1, nproc)
4848

49-
n_glob = 512*4
49+
n_glob = 512*2
5050
n = n_glob/nproc
5151
n_block = 512*512/SZ
5252
n_iters = 100

0 commit comments

Comments
 (0)