Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyopencl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexandru Fikl
pyopencl
Commits
477c420b
Commit
477c420b
authored
2 years ago
by
Alexandru Fikl
Committed by
Andreas Klöckner
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ensure dtype is np.dtype in reductions
parent
4f41f14b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pyopencl/array.py
+21
-0
21 additions, 0 deletions
pyopencl/array.py
with
21 additions
and
0 deletions
pyopencl/array.py
+
21
−
0
View file @
477c420b
...
...
@@ -2987,6 +2987,9 @@ def sum(a, dtype=None, queue=None, slice=None, initial=np._NoValue):
if
initial
is
not
np
.
_NoValue
and
not
isinstance
(
initial
,
SCALAR_CLASSES
):
raise
ValueError
(
"'
initial
'
is not a scalar
"
)
if
dtype
is
not
None
:
dtype
=
np
.
dtype
(
dtype
)
from
pyopencl.reduction
import
get_sum_kernel
krnl
=
get_sum_kernel
(
a
.
context
,
dtype
,
a
.
dtype
)
result
,
event1
=
krnl
(
a
,
queue
=
queue
,
slice
=
slice
,
wait_for
=
a
.
events
,
...
...
@@ -3018,11 +3021,16 @@ def dot(a, b, dtype=None, queue=None, slice=None):
"""
.. versionadded:: 2011.1
"""
if
dtype
is
not
None
:
dtype
=
np
.
dtype
(
dtype
)
from
pyopencl.reduction
import
get_dot_kernel
krnl
=
get_dot_kernel
(
a
.
context
,
dtype
,
a
.
dtype
,
b
.
dtype
)
result
,
event1
=
krnl
(
a
,
b
,
queue
=
queue
,
slice
=
slice
,
wait_for
=
a
.
events
+
b
.
events
,
return_event
=
True
)
result
.
add_event
(
event1
)
return
result
...
...
@@ -3031,12 +3039,17 @@ def vdot(a, b, dtype=None, queue=None, slice=None):
.. versionadded:: 2013.1
"""
if
dtype
is
not
None
:
dtype
=
np
.
dtype
(
dtype
)
from
pyopencl.reduction
import
get_dot_kernel
krnl
=
get_dot_kernel
(
a
.
context
,
dtype
,
a
.
dtype
,
b
.
dtype
,
conjugate_first
=
True
)
result
,
event1
=
krnl
(
a
,
b
,
queue
=
queue
,
slice
=
slice
,
wait_for
=
a
.
events
+
b
.
events
,
return_event
=
True
)
result
.
add_event
(
event1
)
return
result
...
...
@@ -3044,12 +3057,17 @@ def subset_dot(subset, a, b, dtype=None, queue=None, slice=None):
"""
.. versionadded:: 2011.1
"""
if
dtype
is
not
None
:
dtype
=
np
.
dtype
(
dtype
)
from
pyopencl.reduction
import
get_subset_dot_kernel
krnl
=
get_subset_dot_kernel
(
a
.
context
,
dtype
,
subset
.
dtype
,
a
.
dtype
,
b
.
dtype
)
result
,
event1
=
krnl
(
subset
,
a
,
b
,
queue
=
queue
,
slice
=
slice
,
wait_for
=
subset
.
events
+
a
.
events
+
b
.
events
,
return_event
=
True
)
result
.
add_event
(
event1
)
return
result
...
...
@@ -3130,6 +3148,9 @@ def cumsum(a, output_dtype=None, queue=None,
if
output_dtype
is
None
:
output_dtype
=
a
.
dtype
else
:
output_dtype
=
np
.
dtype
(
output_dtype
)
if
wait_for
is
None
:
wait_for
=
[]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment