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
Model registry
Operate
Environments
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
Andreas Klöckner
pyopencl
Merge requests
!30
clrandom: Handle underaligned buffers (closes
#6
).
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
clrandom: Handle underaligned buffers (closes
#6
).
weaken-clrandom-alignment-assumptions
into
master
Overview
1
Commits
3
Pipelines
3
Changes
2
Merged
Matt Wala
requested to merge
weaken-clrandom-alignment-assumptions
into
master
7 years ago
Overview
1
Commits
3
Pipelines
3
Changes
1
Expand
Also tests that the rng works on all supported data types.
0
0
Merge request reports
Compare
version 2
version 2
7fd58465
7 years ago
version 1
3b7109a6
7 years ago
master (base)
and
latest version
latest version
307bd61d
3 commits,
7 years ago
version 2
7fd58465
2 commits,
7 years ago
version 1
3b7109a6
1 commit,
7 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
test/test_clrandom.py
+
1
−
1
Options
@@ -73,7 +73,7 @@ def test_clrandom_dtypes(ctx_factory, rng_class, dtype):
with
cl
.
CommandQueue
(
cl_ctx
)
as
queue
:
rng
.
uniform
(
queue
,
size
,
dtype
)
if
dtype
not
in
(
np
.
int32
,
np
.
int64
):
rng
.
normal
(
queue
,
size
,
dtype
)
Loading