We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bind(c)
enum bind(c)
ICCS's fortran-tf-lib uses it for C interop: src/fortran_tensorflow_lib.F90#L24-L42
enum, bind(c) enumerator :: TF_OK = 0 enumerator :: TF_CANCELLED = 1 ! ... enumerator :: TF_DATA_LOSS = 15 end enum
Some short notes:
enum, bind(c)
enum
bind(X)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ICCS's fortran-tf-lib uses it for C interop: src/fortran_tensorflow_lib.F90#L24-L42
Some short notes:
enum, bind(c)
is a nice simple block constructenum, bind(c)
must use that exact form. No plainenum
.bind(c)
is similar. No otherbind(X)
.The text was updated successfully, but these errors were encountered: