File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
docs/doc_sources/api_reference/dpctl Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 9
9
Note that dictionary-like access to some members is permitted:
10
10
11
11
"C", "C_CONTIGUOUS":
12
- Equivalent to `c_contiguous `
12
+ Equivalent to `` c_contiguous ` `
13
13
"F", "F_CONTIGUOUS":
14
- Equivalent to `f_contiguous `
14
+ Equivalent to `` f_contiguous ` `
15
15
"W", "WRITABLE":
16
- Equivalent to `writable `
16
+ Equivalent to `` writable ` `
17
17
"FC":
18
- Equivalent to `fc `
18
+ Equivalent to `` fc ` `
19
19
"FNC":
20
- Equivalent to `fnc `
20
+ Equivalent to `` fnc ` `
21
21
"FORC", "CONTIGUOUS":
22
- Equivalent to `forc ` and `contiguous `
22
+ Equivalent to `` forc `` and `` contiguous ` `
Original file line number Diff line number Diff line change @@ -34,8 +34,9 @@ cdef cpp_bool _check_bit(int flag, int mask):
34
34
35
35
cdef class Flags:
36
36
"""
37
- Helper class to represent memory layout flags of
38
- :class:`dpctl.tensor.usm_ndarray`.
37
+ Helper class to query the flags of a :class:`dpctl.tensor.usm_ndarray`
38
+ instance, which describe how the instance interfaces with its underlying
39
+ memory.
39
40
"""
40
41
cdef int flags_
41
42
cdef usm_ndarray arr_
You can’t perform that action at this time.
0 commit comments