|
NEP 1.5.1
NetCDF Extension Pack: compression extensions for NetCDF
|
Demonstrates chunking strategies and I/O performance impact (Fortran) More...
Functions/Subroutines | |
| program | f_chunking_performance |
| subroutine | create_chunked_file (filename, strategy_name, storage, chunksizes, data, write_time) |
Demonstrates chunking strategies and I/O performance impact (Fortran)
Fortran equivalent of chunking_performance.c, exploring NetCDF-4 chunking using the Fortran 90 NetCDF API. Creates datasets with different chunking strategies.
Learning Objectives:
Fortran Chunking Functions:
Prerequisites:
Related Examples:
Compilation:
| subroutine f_chunking_performance::create_chunked_file | ( | character(len=*), intent(in) | filename, |
| character(len=*), intent(in) | strategy_name, | ||
| integer, intent(in) | storage, | ||
| integer, dimension(3), intent(in) | chunksizes, | ||
| real, dimension(:,:,:), intent(in) | data, | ||
| real(8), intent(out) | write_time | ||
| ) |
| program f_chunking_performance |