-
Notifications
You must be signed in to change notification settings - Fork 33
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
Release0.21 #1077
Merged
Merged
Release0.21 #1077
Conversation
This file contains 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
…ct links Requirement for oneAPI program overall to replace all links with software.intel.com to actual links. Link for instruction: https://intel-my.sharepoint.com/:w:/p/benjamin_d_moore/ESGTxLBHCuRMs6KUiK1J8hIBsq-PP-0uZWtnpHOflHYxeQ?e=0A5XWs&CID=91F40195-20DC-4434-AD60-1050F0E8FA6C&wdLOR=c4A2564CA-8DC6-4D46-9287-4CC0B62C76C0
Update getting_started.rst to replace all software.intel.com to corre…
Fix docs workflow.
Updated changelog for release 0.21
- Previously, any dpnp.ndarray objects used as an argument in a parfor was a numba_dpex.core.types.DpnpNdArray. The commit changes that and casts all dpnp.ndarray arguments of a parfor to numba_dpex.core.types.USMNdArray. The reason for the change is as follows: Although, DpnpNdArray derives from USMNdArray the two types use different data models. USMNdArray uses the numba_dpex.core.datamodel.models.ArrayModel data model that defines all CPointer type members in the GLOBAL address space. The DpnpNdArray uses Numba's default ArrayModel that does not define pointers in any specific address space. For OpenCL HD Graphics devices, defining a kernel function (spir_kernel calling convention) with pointer arguments that have no address space qualifier causes a run time crash. By casting the argument type for parfor arguments from DpnpNdArray type to the USMNdArray type the generated kernel always has an address space qualifier, avoiding the issue on OpenCL HD graphics devices.
Fix jenkins CI
Documentation preview removed. |
Documentation preview: show. |
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.
Merge release 0.21 changes into gold/2021