Skip to content

Commit

Permalink
Always useful to remove commented-out sections.
Browse files Browse the repository at this point in the history
  • Loading branch information
anicusan committed Dec 30, 2024
1 parent 8817cc7 commit 69462f3
Show file tree
Hide file tree
Showing 2 changed files with 1,257 additions and 1,258 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,6 @@ Help is very welcome for any of the below:
- Add performant multithreaded Julia implementations to all algorithms; e.g. `foreachindex` has one, `any` does not.
- EDIT: as of v0.2.0, only `sort` needs a multithreaded implementation.
- Any way to expose the warp-size from the backends? Would be useful in reductions.
- Define default `init` values for often-used reductions? Or just expose higher-level functions like `sum`, `minimum`, etc.?
- Add a performance regressions runner.
- **Other ideas?** Post an issue, or open a discussion on the Julia Discourse.
Expand Down
Loading

4 comments on commit 69462f3

@anicusan
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/122150

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 69462f3870f676756b1823af54c8cfd11019b8c5
git push origin v0.2.2

@anicusan
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • Added N-dimensional accumulate! implementation
  • Added second 1-dimensional accumulate! algorithm which does not need stronger device-wide synchronisation guarantees (which, notably, Apple Metal does not offer, and so decoupled-lookback cannot work on this platform).
    • Added extension system with different defaults for accumulate on Metal and any/all on oneAPI. Now all corner cases are tested and work.
  • Added higher-order arithmetics functions: sum, prod, minimum, maximum, count, cumsum, cumprod
  • Added one final backend::Backend argument to all functions to allow dispatch on them even when the input array is not transferred to the given backend (e.g. allowing ranges on GPUs).

There are no breaking changes - the new interfaces are a strict superset of previous ones.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/122150

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 69462f3870f676756b1823af54c8cfd11019b8c5
git push origin v0.2.2

Please sign in to comment.