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
Commits
ebb90e5d
Commit
ebb90e5d
authored
12 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Deprecate mem_size. Various strideliness fixes.
parent
3867c5a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/source/array.rst
+0
-5
0 additions, 5 deletions
doc/source/array.rst
pyopencl/array.py
+25
-3
25 additions, 3 deletions
pyopencl/array.py
pyopencl/compyte
+1
-1
1 addition, 1 deletion
pyopencl/compyte
pyopencl/elementwise.py
+1
-1
1 addition, 1 deletion
pyopencl/elementwise.py
with
27 additions
and
10 deletions
doc/source/array.rst
+
0
−
5
View file @
ebb90e5d
...
...
@@ -151,11 +151,6 @@ The :class:`Array` Class
The number of meaningful entries in the array. Can also be computed by
multiplying up the numbers in :attr:`shape`.
.. attribute :: mem_size
The total number of entries, including padding, that are present in
the array.
.. attribute :: nbytes
The size of the entire array in bytes. Computed as :attr:`size` times
...
...
This diff is collapsed.
Click to expand it.
pyopencl/array.py
+
25
−
3
View file @
ebb90e5d
...
...
@@ -173,7 +173,7 @@ def elwise_kernel_runner(kernel_getter):
actual_args
.
append
(
arg
.
data
)
else
:
actual_args
.
append
(
arg
)
actual_args
.
append
(
repr_ary
.
mem_
size
)
actual_args
.
append
(
repr_ary
.
size
)
return
knl
(
queue
,
gs
,
ls
,
*
actual_args
)
...
...
@@ -279,6 +279,7 @@ class Array(object):
dtype
.
itemsize
,
shape
)
else
:
raise
ValueError
(
"
invalid order: %s
"
%
order
)
else
:
# FIXME: We should possibly perform some plausibility
# checking on 'strides' here.
...
...
@@ -292,7 +293,7 @@ class Array(object):
self
.
dtype
=
dtype
self
.
strides
=
strides
self
.
mem_size
=
self
.
size
=
s
self
.
size
=
s
self
.
nbytes
=
self
.
dtype
.
itemsize
*
self
.
size
self
.
allocator
=
allocator
...
...
@@ -315,6 +316,12 @@ class Array(object):
def
flags
(
self
):
return
_ArrayFlags
(
self
)
@property
def
mem_size
(
self
):
from
warnings
import
warn
warn
(
"
Array.mem_size is deprecated. Use Array.size
"
,
DeprecationWarning
,
stacklevel
=
2
)
def
_new_with_changes
(
self
,
data
,
shape
=
None
,
dtype
=
None
,
strides
=
None
,
queue
=
None
,
base
=
None
):
if
shape
is
None
:
...
...
@@ -339,7 +346,9 @@ class Array(object):
#@memoize_method FIXME: reenable
def
get_sizes
(
self
,
queue
,
kernel_specific_max_wg_size
=
None
):
return
splay
(
queue
,
self
.
mem_size
,
if
not
self
.
flags
.
forc
:
raise
NotImplementedError
(
"
cannot operate on non-contiguous array
"
)
return
splay
(
queue
,
self
.
size
,
kernel_specific_max_wg_size
=
kernel_specific_max_wg_size
)
def
set
(
self
,
ary
,
queue
=
None
,
async
=
False
):
...
...
@@ -829,6 +838,19 @@ class Array(object):
# }}}
def
as_strided
(
ary
,
shape
=
None
,
strides
=
None
):
"""
Make an :class:`Array` from the given array with the given
shape and strides.
"""
# undocumented for the moment
shape
=
shape
or
ary
.
shape
strides
=
strides
or
ary
.
strides
return
Array
(
ary
.
queue
,
shape
,
ary
.
dtype
,
allocator
=
ary
.
allocator
,
base
=
ary
.
base
,
data
=
ary
.
data
,
strides
=
strides
)
# }}}
# {{{ creation helpers
...
...
This diff is collapsed.
Click to expand it.
compyte
@
024cb8b6
Compare
53318d27
...
024cb8b6
Subproject commit
53318d27b76a7a070b8576c59d48c872371bc5f2
Subproject commit
024cb8b653c7831699a1dbf0f26585fe309ff05b
This diff is collapsed.
Click to expand it.
pyopencl/elementwise.py
+
1
−
1
View file @
ebb90e5d
...
...
@@ -260,7 +260,7 @@ class ElementwiseKernel:
abs
(
range_
.
stop
-
range_
.
start
)
//
step
,
max_wg_size
)
else
:
invocation_args
.
append
(
repr_vec
.
mem_
size
)
invocation_args
.
append
(
repr_vec
.
size
)
gs
,
ls
=
repr_vec
.
get_sizes
(
queue
,
max_wg_size
)
kernel
.
set_args
(
*
invocation_args
)
...
...
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