Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29254 Discussions

zero lower bounds on pointer assignment

zuch
Beginner
421 Views
Fortran 2003 allows specifying 0 lower bounds on pointerassignment

example:
real,dimension(10,10),target:: array
real,dimension(:,:),pointer:: ptr

ptr(0:,0:) => array(1:10,1:10)

is this feature implemented in intel fortran v11.1 ?
if yes, how could i enable it as the compilation of the code above is failing

Thanks,
Zurab




0 Kudos
1 Reply
Steven_L_Intel1
Employee
421 Views
Bounds remapping is not yet implemented.
0 Kudos
Reply