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
0f5a53ab
Commit
0f5a53ab
authored
2 years ago
by
Matthias Diener
Committed by
Andreas Klöckner
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
test_maximum_minimum_with_scalars: test unsized scalars
parent
dfd84c36
Branches
sym-dtype
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_array.py
+17
-0
17 additions, 0 deletions
test/test_array.py
with
17 additions
and
0 deletions
test/test_array.py
+
17
−
0
View file @
0f5a53ab
...
...
@@ -2054,6 +2054,23 @@ def test_maximum_minimum_with_scalars(ctx_factory):
result
=
cl_array
.
minimum
(
a_cl
,
b_cl
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
.
get
(),
b_np
)
# Test 'untyped' scalars
# FIXME: these don't work with unsized ints
result
=
cl_array
.
minimum
(
4.0
,
b_cl
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
.
get
(),
b_np
)
result
=
cl_array
.
maximum
(
4.0
,
b_cl
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
.
get
(),
a_np
)
result
=
cl_array
.
minimum
(
b_cl
,
4.0
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
.
get
(),
b_np
)
result
=
cl_array
.
maximum
(
b_cl
,
4.0
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
.
get
(),
a_np
)
result
=
cl_array
.
minimum
(
-
3.0
,
4.0
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
,
b_np
)
result
=
cl_array
.
maximum
(
-
3.0
,
4.0
,
queue
=
cq
)
np
.
testing
.
assert_allclose
(
result
,
a_np
)
# }}}
...
...
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