Skip to content

Commit

Permalink
Merge branch 'master' into bio
Browse files Browse the repository at this point in the history
  • Loading branch information
ayzk committed Dec 10, 2024
2 parents 0082024 + 2ddfac9 commit 3b4dc6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/SZ3/api/impl/SZImplOMP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ size_t SZ_compress_size_bound_omp(const Config &conf) {
return sizeof(int) + nThreads * conf.size_est() + nThreads * sizeof(size_t) +
(nThreads-1) * ZSTD_compressBound(chunk_size * sizeof(T)) + ZSTD_compressBound(last_chunk_size * sizeof(T));
#else
return conf.size_est() + ZSTD_compressBound(conf.num * sizeof(T))
return conf.size_est() + ZSTD_compressBound(conf.num * sizeof(T));
#endif
}

Expand Down

0 comments on commit 3b4dc6b

Please sign in to comment.