Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance/version change #1644

Merged
merged 5 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,55 @@
# v1.5.0-rc1 - Release Candidate

## Changes

### Cluster

- #1593 Improved Batch Parallelization. (by @mrfh92)

### Data

- #1529 Make `dataset.ishuffle` optional.

### IO

- #1602 Improved load balancing when loading .npy files from path. (by @Reisii)
- #1551 Improved load balancing when loading .csv files from path. (by @Reisii)

### Linear Algebra

- #1261 Batched matrix multiplication. (by @FOsterfeld)
- #1504 Add solver for triangular systems. (by @FOsterfeld)

### Manipulations

- #1419 Implement distributed `unfold` operation. (by @FOsterfeld)

### Random

- #1508 Introduce Batchparallel for RNG as default. (by @mrfh92)

### Signal

- #1515 Support batch 1-d convolution in `ht.signal.convolve`. (by @ClaudiaComito)

### Statistics

- #1510 Support multiple axes for `ht.percentile`. (by @ClaudiaComito)

### Sparse

- #1377 Distributed Compressed Sparse Column Matrix. (by @Mystic-Slice)

### Other

- #1618 Support mpi4py 4.x.x (by @JuanPedroGHM)


## Contributors

@ClaudiaComito, @FOsterfeld, @JuanPedroGHM, @Reisii, @mrfh92, @mtar and Hoppe


# v1.4.2 - Maintenance release

## Changes
Expand Down
8 changes: 6 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ authors:
- family-names: Tarnawa
given-names: Michael
# release contributors - add as needed
- family-names: Osterfeld
given-names: Fynn
- family-names: Nguyen Xuan
given-names: Tu
- family-names: Vaithinathan Aravindan
given-names: Ashwath
repository-code: 'https://github.com/helmholtz-analytics/heat'
url: 'https://helmholtz-analytics.github.io/heat/'
repository: 'https://heat.readthedocs.io/en/stable/'
Expand Down Expand Up @@ -64,8 +70,6 @@ preferred-citation:
given-names: Achim
- family-names: Streit
given-names: Achim
- family-names: Vaithinathan Aravindan
given-names: Ashwath
year: 2020
collection-title: 2020 IEEE International Conference on Big Data (IEEE Big Data 2020)
collection-doi: 10.1109/BigData50022.2020.9378050
Expand Down
2 changes: 1 addition & 1 deletion heat/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""Indicates feature extension."""
micro: int = 0
"""Indicates revisions for bugfixes."""
extension: str = "dev"
extension: str = "rc1"
"""Indicates special builds, e.g. for specific hardware."""

if not extension:
Expand Down
Loading