Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View jonwright's full-sized avatar

Jon Wright jonwright

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jonwright
jonwright / singleCore6M.ipynb
Created July 9, 2022 09:44
single threaded integration
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jonwright
jonwright / H5Dget_chunk_info_perf.py
Created October 23, 2021 16:31
H5Dget_chunk_info benchmark via h5py
import sys
from timeit import default_timer as timer
import numpy
import h5py
N = int( sys.argv[1] )
B = int( sys.argv[2] )
print("h5py:",h5py.version.version,
"hdf5:",h5py.version.hdf5_version)