Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible in modern versions of Fortran to pass a kind parameter to a subprogram and to use this to 'cast' variables to this kind? As an example, in the following code I am trying to convert an default integer to an 16-bit integer before printing it.

program mwe

! Could use iso_fortran_env definition of int16, but I am stuck with
! old versions of ifort and gfortran.
! use, intrinsic :: iso_fortran_env, only : int16

implicit none

! 16-bit (short) integer kind.
integer, parameter :: int16 = selected_int_kind(15)

call convert_print(123, int16)

contains

  subroutine convert_print(i, ikind)
    implicit none
    integer, intent(in) :: i
    integer, intent(in) :: ikind

    print*, int(i, ikind)

  end subroutine convert_print

end program mwe

With this example code the Intel Fortran compiler complains that

mwe.f(24): error #6238: An integer constant expression is required in this context. [IKIND]
...
mwe.f(24): error #6683: A kind type parameter must be a compile-time constant [IKIND]

and gfortran complains

'kind' argument of 'int' intrinsic at (1) must be a constant

Using print*, int(i, int16) in place of print*, int(i, ikind) would of course work fine in this case. However, if convert_print were defined in a a module which does not define int16 then this would be useless.

Is there a way of passing a kind parameter as a constant to subprograms?

share|improve this question
What stops you from putting the constant in a module and using it where required? – IanH Nov 6 '12 at 19:06
@IanH I could, but then I would need a separate subprogram for each kind, which I came to realise after posting this question (see my answer). I was hoping there was a way to write a single subprogram which takes a kind parameter as an argument. However, it seems that this is not possible and that I have the wrong data model for Fortran in mind (kinds are basically different types, and types can't be passed around, i.e. you can't pass integer to a function) - I have obviously spent too much time working with higher level languages where you can pass types around. – Chris Nov 7 '12 at 9:30
Are you writing a library? For the data that you are dealing with, is the same data represented in different kind integers in the same program? Typical use case is to have a program wide "Kinds" module that describes the kinds to use for each class of data in the program. If you are writing library support procedures and need to instantiate a template of a procedures for a range of kinds then typical use is to put the generic body of the procedure in a separate file, and use INCLUDE to pull that body into actual specific procedure definitions. – IanH Nov 7 '12 at 21:53

2 Answers

I have the same problem. I find extremely inconvenient that it is not allowed to pass the kind datatype as an argument to a procedures. In my case, I am writing write a subroutine to just read a matrix from a file and get the object in the data type that I want to. I had to write four different subroutines: ReadMatrix_int8(…), ReadMatrix_int16(…), ReadMatrix_int32(…) and ReadMatrix_int64(…) which are nothing but the same code with one single line different:

integer(kind=xxxx), allocatable, intent(out) :: matrix(:,:)

It would make sense to write only one subroutine and pass xxxx as an argument. If I find any solution I will let you know. But I am afraid that there is no better solution than writing the four subroutines and then writing an interface to create a generic procedure like:

interface ReadMatrix
     module procedure ReadMatrix_int8
     module procedure ReadMatrix_int16
     module procedure ReadMatrix_int32
     module procedure ReadMatrix_int64
end interface
share|improve this answer
up vote 1 down vote accepted

As far as I can work out, what I am trying to do is expressly forbidden by the Fortran 2003 standard (PDF, 4.5 MB):

5.1.2.10 PARAMETER attribute

A named constant shall not be referenced unless it has been defined previously in the same statement, defined in a prior statement, or made accessible by use or host association.

Therefore is seems that I need to define a function for each conversion I wish to do, for example:

subroutine print_byte(i)
  implicit none
  integer, intent(in) :: i

  print*, int(i, int8)

end subroutine print_byte

subroutine print_short(i)
  implicit none
  integer, intent(in) :: i

  print*, int(i, int16)

end subroutine print_short

subroutine print_long(i)
  implicit none
  integer, intent(in) :: i

  print*, int(i, int32)

end subroutine print_long

Obviously all of the above will have to be overloaded to accept different kinds of the input argument. This seems like a lot of work to get around not being able to pass a constant, so if someone has a better solution I am keen to see it.

share|improve this answer
2  
You can use include or PyF95++ templates. Not as a workaround, but as a way how to shorten the work you show above. – Vladimir F Nov 6 '12 at 15:15
includes will definitely help, although there will still be a lot of similar code. Never heard of PyF95++ but it looks interesting - thanks for the tip. – Chris Nov 6 '12 at 15:20
Why do you go to all the trouble of defining subroutines for the different integer kinds and then use compiler-specified default output formatting ? Or is this just a simplification of what you really want to do ? – High Performance Mark Nov 6 '12 at 15:38
@HighPerformanceMark This is a simplification of what I want to do. In my minimal example I am just printing an integer, but in a real program I am trying to print information about the numeric data model, so I need to apply inquiry functions etc to an integer of the kind ikind. – Chris Nov 6 '12 at 15:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.