support f32 feature

This commit is contained in:
Magnus Ulimoen 2020-04-04 22:33:33 +02:00
parent c17ef20c76
commit 31f019e74c
1 changed files with 3 additions and 3 deletions

View File

@ -318,7 +318,7 @@ fn main() {
} }
let grids = jgrids.into_iter().map(|egrid| egrid.grid).collect(); let grids = jgrids.into_iter().map(|egrid| egrid.grid).collect();
let integration_time: f64 = json["integration_time"].as_number().unwrap().into(); let integration_time: Float = json["integration_time"].as_number().unwrap().into();
let vortexparams = utils::json_to_vortex(json["vortex"].clone()); let vortexparams = utils::json_to_vortex(json["vortex"].clone());
@ -432,7 +432,7 @@ fn create_hdf<P: AsRef<std::path::Path>>(
g.link_soft("/t", "t").unwrap(); g.link_soft("/t", "t").unwrap();
let add_dim = |name| { let add_dim = |name| {
g.new_dataset::<f64>() g.new_dataset::<Float>()
.gzip(gzip) .gzip(gzip)
.create(name, (grid.ny(), grid.nx())) .create(name, (grid.ny(), grid.nx()))
}; };
@ -442,7 +442,7 @@ fn create_hdf<P: AsRef<std::path::Path>>(
yds.write(grid.y())?; yds.write(grid.y())?;
let add_var = |name| { let add_var = |name| {
g.new_dataset::<f64>() g.new_dataset::<Float>()
.gzip(gzip) .gzip(gzip)
.chunk((1, grid.ny(), grid.nx())) .chunk((1, grid.ny(), grid.nx()))
.resizable_idx(&[true, false, false]) .resizable_idx(&[true, false, false])