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
In extracted kernels / device subroutines, we sometimes need to translate size(<array>[,<dim>]), lbound(<array>,<dim>)
and ubound(<array>,<dim>) intrinsic calls,
Implementation status for different types of <array> and <dim>:
<array> is identifier and <dim> is integer literal:
size(<array>[,<dim>])
,lbound(<array>,<dim>)
and
ubound(<array>,<dim>)
intrinsic calls,Implementation status for different types of
<array
> and<dim>
:<array>
is identifier and<dim>
is integer literal:size(<array>,<dim>)
-><array>_n<dim>
lbound(<array>,<dim>)
-><array>_lb<dim>
ubound(<array>,<dim>)
-><array>_lb<dim> + <array>_n<dim>
<array>
is identifier and<dim>
is identifier | arithmetic expressionOther cases where
<array>
is not an identifier and / or<dim>
is identifier are not supportedThe text was updated successfully, but these errors were encountered: