Skip to content
Snippets Groups Projects

Fortran 90 bindings

Merged Podhorszki, Norbert requested to merge github/fork/williamfgc/f90_bindings into master
30 files
+ 1766
47
Compare changes
  • Side-by-side
  • Inline
Files
30
@@ -26,13 +26,24 @@ typedef enum {
} adios2_constant_dims;
typedef enum {
adios2_type_string,
adios2_type_char,
adios2_type_char = 0,
adios2_type_int = 1,
adios2_type_float = 2,
adios2_type_double = 3,
adios2_type_float_complex = 4,
adios2_type_double_complex = 5,
adios2_type_int8_t = 6,
adios2_type_int16_t = 7,
adios2_type_int32_t = 8,
adios2_type_int64_t = 9,
adios2_type_string,
adios2_type_signed_char,
adios2_type_short,
adios2_type_int,
adios2_type_long_int,
adios2_type_long_long_int,
@@ -42,16 +53,6 @@ typedef enum {
adios2_type_unsigned_long_int,
adios2_type_unsigned_long_long_int,
adios2_type_float,
adios2_type_double,
adios2_type_float_complex,
adios2_type_double_complex,
adios2_type_int8_t,
adios2_type_int16_t,
adios2_type_int32_t,
adios2_type_int64_t,
adios2_type_uint8_t,
adios2_type_uint16_t,
adios2_type_uint32_t,
Loading