Skip to content

Commit

Permalink
libpressio version 0.34.2
Browse files Browse the repository at this point in the history
- Bug Fix: previous the sz plugin had an erronous space at the end of an
  option string.  This may break usage of the `sz:quantization_bins `
  option.
  • Loading branch information
robertu94 committed Feb 27, 2020
1 parent 51da773 commit 4733326
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(libpressio VERSION "0.34.1" LANGUAGES CXX C)
project(libpressio VERSION "0.34.2" LANGUAGES CXX C)

#correct was to set a default build type
# https://blog.kitware.com/cmake-and-the-default-build-type/
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Copyright © 2020 , UChicago Argonne, LLC
All Rights Reserved
[libpressio, Version 0.34.1]
[libpressio, Version 0.34.2]
Robert Underwood
Argonne National Laboratory

Expand Down
4 changes: 2 additions & 2 deletions src/plugins/compressors/sz_plugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class sz_plugin: public libpressio_compressor_plugin, std::enable_shared_from_th
options.set_type("sz:config_file", pressio_option_charptr_type);
options.set_type("sz:config_struct", pressio_option_userptr_type);
options.set("sz:max_quant_intervals", confparams_cpr->max_quant_intervals);
options.set("sz:quantization_intervals ", confparams_cpr->quantization_intervals);
options.set("sz:quantization_intervals", confparams_cpr->quantization_intervals);
options.set("sz:max_range_radius", confparams_cpr->maxRangeRadius);
options.set("sz:sol_id", confparams_cpr->sol_ID);
options.set("sz:lossless_compressor", confparams_cpr->losslessCompressor);
Expand Down Expand Up @@ -78,7 +78,7 @@ class sz_plugin: public libpressio_compressor_plugin, std::enable_shared_from_th
}

options.get("sz:max_quant_intervals", &confparams_cpr->max_quant_intervals);
options.get("sz:quantization_intervals ", &confparams_cpr->quantization_intervals);
options.get("sz:quantization_intervals", &confparams_cpr->quantization_intervals);
options.get("sz:max_range_radius", &confparams_cpr->maxRangeRadius);
options.get("sz:sol_id", &confparams_cpr->sol_ID);
options.get("sz:lossless_compressor", &confparams_cpr->losslessCompressor);
Expand Down

0 comments on commit 4733326

Please sign in to comment.