Skip to content

Cleanup/tensor #941

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

Merged
merged 24 commits into from
Oct 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4e999f7
Moved implementation of kernels out to dedicated header files.
oleksandr-pavlyk Sep 22, 2022
9640959
Marked non-templated function definitions inline
oleksandr-pavlyk Oct 8, 2022
34bfc6d
Use inline for functions defined in header files to avoid 'multiple d…
oleksandr-pavlyk Sep 29, 2022
d658ebc
Added doxygen docs for kernels
oleksandr-pavlyk Oct 12, 2022
db68b36
Merge pull request #925 from IntelPython/cleanup-tensor-py
oleksandr-pavlyk Oct 12, 2022
a496d53
Introduced dpctl::tensor::is_c_contiguous and is_f_contiguous and use…
oleksandr-pavlyk Sep 26, 2022
046d37b
Modularized retrieval of usm_ndarray_ptr
oleksandr-pavlyk Oct 1, 2022
43a6321
Got rid of `static dpctl::tensor::detail::usm_ndarray_types array_typ…
oleksandr-pavlyk Sep 28, 2022
7d2ab88
Changed dpctl/.gitignore to only ignore generated _*.cpp files, not a…
oleksandr-pavlyk Oct 8, 2022
798ecca
Merge pull request #931 from IntelPython/cleanup-tensor-step2
oleksandr-pavlyk Oct 13, 2022
9ba523e
Created dpctl::detail::dpctl_capi class to import_dpctl()
oleksandr-pavlyk Oct 8, 2022
c2ab9d7
Added comments per PR review
oleksandr-pavlyk Oct 15, 2022
1c77305
Merge pull request #932 from IntelPython/cleanup-tensor-step3
oleksandr-pavlyk Oct 15, 2022
f1779bd
Made contract_iter and contract_iter2 templated
oleksandr-pavlyk Oct 8, 2022
67802a3
Merge pull request #933 from IntelPython/cleanup-tensor-step4
oleksandr-pavlyk Oct 16, 2022
6f64ba0
Moved Python binding for copy_usm_ndarray_to_usm_ndarray into dedicat…
oleksandr-pavlyk Oct 8, 2022
87ed0ad
Added copy_for_reshape to contain implementation
oleksandr-pavlyk Oct 6, 2022
0e8cf49
Moved np.ndarray->dpt.usm_ndarray cast-and-copy out to separate file
oleksandr-pavlyk Oct 7, 2022
206eef0
Moved linear seq. functions to dedicated files
oleksandr-pavlyk Oct 7, 2022
c9e6026
Moved full ctor to dedicated file
oleksandr-pavlyk Oct 7, 2022
8f5b37b
Moved eye constructor out to dedicated implementation file
oleksandr-pavlyk Oct 7, 2022
f498829
Moved definition of tril/triu into dedicated file
oleksandr-pavlyk Oct 7, 2022
51fd051
Factored out device-capabilities into dedicated file
oleksandr-pavlyk Oct 7, 2022
30223a2
Merge pull request #934 from IntelPython/cleanup-tensor-part5
oleksandr-pavlyk Oct 17, 2022
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
2 changes: 1 addition & 1 deletion dpctl/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*.so
*.cpp
_*.cpp
*.cxx
*.c
*.h
Expand Down
Loading