Skip to content

Commit

Permalink
Set default min front size for compression, for all formats, to a ver…
Browse files Browse the repository at this point in the history
…y large value.
  • Loading branch information
pghysels committed Nov 18, 2021
1 parent 044fb3e commit 2127b09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/StrumpackOptions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1232,24 +1232,24 @@ namespace strumpack {
CompressionType comp_ = CompressionType::NONE;

/** HSS options */
int hss_min_front_size_ = 5000;
int hss_min_front_size_ = 100000;
int hss_min_sep_size_ = 1000;
int sep_order_level_ = 1;
bool indirect_sampling_ = false;
HSS::HSSOptions<scalar_t> hss_opts_;

/** BLR options */
BLR::BLROptions<scalar_t> blr_opts_;
int blr_min_front_size_ = 5000;
int blr_min_front_size_ = 100000;
int blr_min_sep_size_ = 512;

/** HODLR options */
HODLR::HODLROptions<scalar_t> hodlr_opts_;
int hodlr_min_front_size_ = 10000;
int hodlr_min_front_size_ = 100000;
int hodlr_min_sep_size_ = 5000;

/** LOSSY/LOSSLESS options */
int lossy_min_front_size_ = 16;
int lossy_min_front_size_ = 100000;
int lossy_min_sep_size_ = 8;
int lossy_precision_ = 16;

Expand Down

0 comments on commit 2127b09

Please sign in to comment.