-
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
Implement support for dpnp.linspace() #1220
Closed
chudur-budur
wants to merge
19
commits into
IntelPython:main
from
chudur-budur:feature/dpnp-linspace
Closed
Implement support for dpnp.linspace() #1220
chudur-budur
wants to merge
19
commits into
IntelPython:main
from
chudur-budur:feature/dpnp-linspace
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
f08888d
to
fa0f4fb
Compare
708d5fa
to
24dff92
Compare
a100373
to
50ee93f
Compare
2707fbc
to
5f5de6b
Compare
5f5de6b
to
7ce0d45
Compare
4961094
to
6872ed0
Compare
2b6f009
to
758e4e8
Compare
…pointer Stop type instantiation during the compilation of hpp files Fixed SequenceStepFunctor
Dispatch vectors are correctly populated during the import of numba_dpex. add_sycl_to_target() must come after python_add_library()
Do not sort includes Partially functional overload Use correct ISO C types and added debug print
Better error message Functional dpnp.arange for int and double types
Add license pycqa --> PyCQA Add license Fully functional dpnp.arange without complex number support
Adding more tests Failing on Float <- Integer case, fixing it.
Fix for windows: IntelDPCPP vs. IntelSYCL Revert changes Fix for coveralls.io Fix
Fix pre-commit Fix unbound LD_LIBRARY_PATH problem Supply cmake compiler selections in SKBUILD_ARGS Re-adding compiler selections in setup.py Try with export CC and CXX icx and icpx need to be set in setup.py, and icpx==icx for windows Remove demangling function and debug print Use uintN_t instead of u_intN_t uint --> unsigned int, for windows Set inferered dtype to default bitwidth instead of highest bitwidth Again try with setting cc and cxx through build.* Smart append LD_LIBRARY_PATH Set cc and cxx in converage.yml
Added #define __API_H__ Added all C/C++ docs. Finished python docs. Remove SortIncludes in .clang-format Addressed review comments.
Suppress pylint error message Add .pylintrc, allow TODO: and FIXME: in docstring Allow non-snake-case variable names Fix stub names Use bool type instead of uint8_t Clean up code
Fix in docstring
Add _get_xfail_test() to _helper.py _is_type() --> _match_type() Fix docstring Set CMAKE_C##_COMPILER in setup.py Revert setup.py
Fix 'SYCL feature test compile failed' problem Added overload and intrinsic functions for dpnp.linspace()
758e4e8
to
acfc7cb
Compare
Thank you @chudur-budur! As discussed, we will explore the route of adding support for dpnp constructors using |
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 is a WIP for overload implementation of
dpnp.linspace()
This is based on #1144