Merge 0.15.0rc1 into gold/2021#1405
Merged
oleksandr-pavlyk merged 6 commits intogold/2021from Sep 19, 2023
Merged
Conversation
* Factored mask_positions implementation and kernels into separate files Doing this will make implementing more accumulators convenient * Moved split_iteration_space into simplify_iteration_space.cpp * Implements _cumsum_1d * Implements dpctl.tensor.repeat * Adds tests for dpctl.tensor.repeat * Added repeat.__docstring__ * repeat now permits 0d arrays when `axis` is `None` - Also adds a check that the sole element of a length 1 tuple is an integer before proceeding to the scalar case * Implemented usm_ndarray `repeats` inputs for repeat * Implements dpctl.tensor.tile --------- Co-authored-by: Oleksandr Pavlyk <oleksandr.pavlyk@intel.com>
* Changed WG traversal pattern in boolean reductions Similar to changes in sum, now traverses the iteration dimension the fastest * Implements boolean reduction kernel for axis 0 - Aligns with similar changes to sum * Require Numpy <1.26 until test_hyperbolic is fixed
Co-authored-by: ndgrigorian <46709016+ndgrigorian@users.noreply.github.com>
Populate changelog for 0.15.0 release
|
Deleted rendered PR docs from intelpython.github.com/dpctl, latest should be updated shortly. 🤞 |
|
View rendered docs @ https://intelpython.github.io/dpctl/pulls/1405/index.html |
|
Array API standard conformance tests for dpctl=0.15.0rc1=py310ha25a700_35 ran successfully. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR merges gh-1381 and gh-1401