Mercurial > hg > octave-nkf
annotate liboctave/mx-ops @ 11729:de826649dfa2 release-3-0-x
fix to enable compiling with Intel C++
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 03 Apr 2008 10:24:18 -0400 |
parents | a8f372f6c5a7 |
children | 82be108cc558 72830070a17b |
rev | line source |
---|---|
7019 | 1 # Copyright (C) 2003, 2004, 2006, 2007 John W. Eaton |
2 # | |
3 # This file is part of Octave. | |
4 # | |
5 # Octave is free software; you can redistribute it and/or modify it | |
6 # under the terms of the GNU General Public License as published by the | |
7 # Free Software Foundation; either version 3 of the License, or (at | |
8 # your option) any later version. | |
9 # | |
10 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 # for more details. | |
14 # | |
15 # You should have received a copy of the GNU General Public License | |
16 # along with Octave; see the file COPYING. If not, see | |
17 # <http://www.gnu.org/licenses/>. | |
18 | |
4544 | 19 # types |
4953 | 20 # |
6119 | 21 # key typename object-type header fwd-decl-ok scalar-zero core-type |
4953 | 22 # |
23 # object-type is one of | |
24 # | |
25 # S: scalar | |
26 # M: matrix | |
27 # DM: diagonal matrix | |
28 # ND: N-d array | |
29 # | |
6119 | 30 # core-type is only used for the octave_int types, and is the template |
31 # parameter: octave_int8 is octave_int<int8_t> | |
32 # | |
5030 | 33 x NONE NONE NONE NO 0 |
34 b bool S NONE NO false | |
35 bm boolMatrix ND boolMatrix.h YES false | |
36 bnda boolNDArray ND boolNDArray.h YES false | |
37 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0 | |
38 cm ComplexMatrix M CMatrix.h YES 0.0 | |
39 cnda ComplexNDArray ND CNDArray.h YES 0.0 | |
40 cs Complex S oct-cmplx.h NO 0.0 | |
41 dm DiagMatrix DM dDiagMatrix.h YES 0.0 | |
42 m Matrix M dMatrix.h YES 0.0 | |
43 nda NDArray ND dNDArray.h YES 0.0 | |
44 s double S NONE NO 0.0 | |
6119 | 45 i8 octave_int8 S oct-inttypes.h YES octave_int8(0) int8_t |
46 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8(0) uint8_t | |
47 i16 octave_int16 S oct-inttypes.h YES octave_int16(0) int16_t | |
48 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16(0) uint16_t | |
49 i32 octave_int32 S oct-inttypes.h YES octave_int32(0) int32_t | |
50 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32(0) uint32_t | |
51 i64 octave_int64 S oct-inttypes.h YES octave_int64(0) int64_t | |
52 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64(0) uint64_t | |
53 i8nda int8NDArray ND int8NDArray.h YES octave_int8(0) int8_t | |
54 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8(0) uint8_t | |
55 i16nda int16NDArray ND int16NDArray.h YES octave_int16(0) int16_t | |
56 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16(0) uint16_t | |
57 i32nda int32NDArray ND int32NDArray.h YES octave_int32(0) int32_t | |
58 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32(0) uint32_t | |
59 i64nda int64NDArray ND int64NDArray.h YES octave_int64(0) int64_t | |
60 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64(0) uint64_t | |
4544 | 61 # ops |
5030 | 62 # result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ... |
4953 | 63 # |
64 # op-type is one of | |
65 # | |
66 # B: binary ops, + - * / | |
67 # C: comparison ops, < <= == != >= > | |
68 # L: logical ops, & | | |
69 # | |
4544 | 70 cdm cdm dm B |
71 cdm dm cdm B | |
72 cm cs cdm B | |
73 cm cs dm B | |
5030 | 74 cm cs m BCL real NONE boolMatrix.h |
75 cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h | |
4544 | 76 cm cdm cs B |
5030 | 77 cm cdm cm B |
78 cm cdm m B | |
4544 | 79 cm cdm s B |
5030 | 80 cm cm cdm B |
81 cm cm dm B | |
82 cm cm m BCL real NONE boolMatrix.h | |
83 cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h | |
84 cm cm s BCL real NONE boolMatrix.h | |
85 cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h | |
4544 | 86 cm dm cs B |
5030 | 87 cm dm cm B |
88 cm m cs BCL NONE real boolMatrix.h | |
89 cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h | |
90 cm m cdm B | |
91 cm m cm BCL NONE real boolMatrix.h | |
92 cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h | |
4544 | 93 cm s cdm B |
5030 | 94 cm s cm BCL NONE real boolMatrix.h |
95 cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h | |
96 m dm m B | |
4544 | 97 m dm s B |
5030 | 98 m m dm B |
4544 | 99 m s dm B |
4964 | 100 # |
5030 | 101 i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
102 i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
103 ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
104 ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
105 i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
106 i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
107 ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
108 ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
109 i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
110 i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
111 ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
112 ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
113 i64nda s i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
114 i64nda i64nda s CL NONE NONE boolMatrix.h boolNDArray.h | |
115 ui64nda s ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
116 ui64nda ui64nda s CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 117 # |
11710
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
118 i8nda nda i8 BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
119 i8nda i8 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
120 ui8nda nda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
121 ui8nda ui8 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
122 i16nda nda i16 BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
123 i16nda i16 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
124 ui16nda nda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
125 ui16nda ui16 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
126 i32nda nda i32 BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
127 i32nda i32 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
128 ui32nda nda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
129 ui32nda ui32 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
130 i64nda nda i64 CL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
131 i64nda i64 nda CL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
132 ui64nda nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
133 ui64nda ui64 nda CL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 134 # |
11710
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
135 i8nda nda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
136 i8nda i8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
137 ui8nda nda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
138 ui8nda ui8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
139 i16nda nda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
140 i16nda i16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
141 ui16nda nda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
142 ui16nda ui16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
143 i32nda nda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
144 i32nda i32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
145 ui32nda nda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
146 ui32nda ui32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
147 i64nda nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
148 i64nda i64nda nda CL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
149 ui6nda nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h |
a8f372f6c5a7
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
150 ui64nda ui64nda nda CL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 151 # |
5030 | 152 x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h |
153 x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
154 x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
155 x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
156 x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
157 x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
158 x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 159 # |
5030 | 160 x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
161 x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
162 x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
163 x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
164 x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
165 x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
166 x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 167 # |
5030 | 168 x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
169 x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
170 x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
171 x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
172 x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
173 x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
174 x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 175 # |
5030 | 176 x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
177 x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
178 x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
179 x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
180 x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
181 x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
182 x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 183 # |
5030 | 184 x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
185 x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
186 x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
187 x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
188 x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
189 x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
190 x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 191 # |
5030 | 192 x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
193 x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
194 x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
195 x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
196 x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
197 x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
198 x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 199 # |
5030 | 200 x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
201 x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
202 x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
203 x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
204 x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
205 x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
206 x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 207 # |
5030 | 208 x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
209 x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
210 x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
211 x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
212 x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
213 x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
214 x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 215 # |
5030 | 216 x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
217 x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
218 x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
219 x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
220 x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
221 x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
222 x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 223 # |
5030 | 224 x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
225 x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
226 x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
227 x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
228 x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
229 x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
230 x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 231 # |
5030 | 232 x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
233 x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
234 x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
235 x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
236 x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
237 x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
238 x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 239 # |
5030 | 240 x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
241 x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
242 x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
243 x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
244 x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
245 x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
246 x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 247 # |
5030 | 248 x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
249 x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
250 x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
251 x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
252 x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
253 x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
254 x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 255 # |
5030 | 256 x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
257 x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
258 x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
259 x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
260 x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
261 x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
262 x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 263 # |
5030 | 264 x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
265 x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
266 x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
267 x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
268 x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
269 x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
270 x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 271 # |
5030 | 272 x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
273 x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
274 x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
275 x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
276 x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
277 x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
278 x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 279 # |
5030 | 280 x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
281 x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
282 x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
283 x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
284 x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
285 x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
286 x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 287 # |
5030 | 288 x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
289 x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
290 x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
291 x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
292 x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
293 x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
294 x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 295 # |
5030 | 296 x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
297 x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
298 x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
299 x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
300 x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
301 x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
302 x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 303 # |
5030 | 304 x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
305 x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
306 x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
307 x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
308 x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
309 x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
310 x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 311 # |
5030 | 312 x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
313 x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
314 x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
315 x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
316 x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
317 x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
318 x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 319 # |
5030 | 320 x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
321 x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
322 x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
323 x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
324 x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
325 x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
326 x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 327 # |
5030 | 328 x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
329 x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
330 x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
331 x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
332 x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
333 x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
334 x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 335 # |
5030 | 336 x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
337 x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
338 x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
339 x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
340 x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
341 x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
342 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h |