You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can the minimal spacing of the consecutive chevron's be maintained by fprettify?
The text was updated successfully, but these errors were encountered:
edoyango
changed the title
feature request: prevent fprettify from removing separating <<<,>>>
feature request: prevent fprettify from separating <<<,>>>
Jun 11, 2022
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?
The text was updated successfully, but these errors were encountered: