Skip to content

Commit

Permalink
split long line
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfhm committed Nov 24, 2023
1 parent 5dbb3b4 commit c1a75a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion transformations/tests/test_pool_allocator.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,8 @@ def test_pool_allocator_temporaries_kernel_sequence(frontend, block_dim, directi

stack_size = f'max(c_sizeof(real(1, kind={kind_real}))*nlon + c_sizeof(real(1, kind={kind_real}))*nlon*nz + '
stack_size += f'2*c_sizeof(int(1, kind={kind_int}))*nlon + c_sizeof(logical(true, kind={kind_log}))*nz,'
stack_size += f'3*c_sizeof(real(1, kind={kind_real}))*nlon*nz+c_sizeof(real(1,kind=jprb))*nlon)/c_sizeof(real(1, kind=jprb))'
stack_size += f'3*c_sizeof(real(1, kind={kind_real}))*nlon*nz + '
stack_size += f'c_sizeof(real(1,kind=jprb))*nlon)/c_sizeof(real(1, kind=jprb))'
check_stack_created_in_driver(driver, stack_size, calls[0], 2)

# Has the data sharing been updated?
Expand Down

0 comments on commit c1a75a2

Please sign in to comment.