Open
Description
cuda fortran makes use of multiple chevrons to indicate kernel launch configurations. fprettify seperates these chevrons. Example:
before fprettify:
call example_subroutine<<<32,32>>>(arg1, arg2, arg3)
after fprettify:
call example_subroutine < < < 32, 32 > > > (arg1, arg2, arg3)
Can the minimal spacing of the consecutive chevron's be maintained by fprettify?