NEP 1.5.1
NetCDF Extension Pack: compression extensions for NetCDF
Loading...
Searching...
No Matches
Functions/Subroutines
f_chunking_performance.f90 File Reference

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)
 

Detailed Description

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:

gfortran -o f_chunking_performance f_chunking_performance.f90 -lnetcdff -lnetcdf
program f_chunking_performance
Definition f_chunking_performance.f90:33
Author
Edward Hartnett, Intelligent Data Design, Inc.
Date
2026

Function/Subroutine Documentation

◆ create_chunked_file()

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 
)

◆ f_chunking_performance()

program f_chunking_performance