Mercurial > hg > octave-lyh
annotate liboctave/mx-ops @ 14348:95c43fc8dbe1 stable rc-3-6-1-0
3.6.1 release candidate 0
* configure.ac (AC_INIT): Version is now 3.6.1-rc0.
(OCTAVE_RELEASE_DATE): Now 2012-02-07.
* liboctave/Makefile.am: Bump liboctave revision version.
* src/Makefile.am: Bump liboctave revision version.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 09 Feb 2012 11:25:04 -0500 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
1 # Copyright (C) 2003-2012 John W. Eaton |
7019 | 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 | |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9732
diff
changeset
|
19 # NOTE: if this file changes, you must run autogen.sh and configure to |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9732
diff
changeset
|
20 # rebuild the source file lists for Make. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9732
diff
changeset
|
21 |
4544 | 22 # types |
4953 | 23 # |
6119 | 24 # key typename object-type header fwd-decl-ok scalar-zero core-type |
4953 | 25 # |
26 # object-type is one of | |
27 # | |
28 # S: scalar | |
29 # M: matrix | |
30 # DM: diagonal matrix | |
31 # ND: N-d array | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
32 # FS: scalar |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
33 # FM: matrix |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
34 # FDM: diagonal matrix |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
35 # FND: N-d array |
4953 | 36 # |
6119 | 37 # core-type is only used for the octave_int types, and is the template |
38 # parameter: octave_int8 is octave_int<int8_t> | |
39 # | |
5030 | 40 x NONE NONE NONE NO 0 |
41 b bool S NONE NO false | |
42 bm boolMatrix ND boolMatrix.h YES false | |
43 bnda boolNDArray ND boolNDArray.h YES false | |
44 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0 | |
45 cm ComplexMatrix M CMatrix.h YES 0.0 | |
46 cnda ComplexNDArray ND CNDArray.h YES 0.0 | |
47 cs Complex S oct-cmplx.h NO 0.0 | |
48 dm DiagMatrix DM dDiagMatrix.h YES 0.0 | |
49 m Matrix M dMatrix.h YES 0.0 | |
50 nda NDArray ND dNDArray.h YES 0.0 | |
51 s double S NONE NO 0.0 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
52 fcdm FloatComplexDiagMatrix DM fCDiagMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
53 fcm FloatComplexMatrix M fCMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
54 fcnda FloatComplexNDArray ND fCNDArray.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
55 fcs FloatComplex S oct-cmplx.h NO static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
56 fdm FloatDiagMatrix DM fDiagMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
57 fm FloatMatrix M fMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
58 fnda FloatNDArray ND fNDArray.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
59 fs float S NONE NO static_cast<float>(0.0) |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
60 i8 octave_int8 S oct-inttypes.h YES octave_int8::zero int8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
61 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8::zero uint8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
62 i16 octave_int16 S oct-inttypes.h YES octave_int16::zero int16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
63 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16::zero uint16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
64 i32 octave_int32 S oct-inttypes.h YES octave_int32::zero int32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
65 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32::zero uint32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
66 i64 octave_int64 S oct-inttypes.h YES octave_int64::zero int64_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
67 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64::zero uint64_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
68 i8nda int8NDArray ND int8NDArray.h YES octave_int8::zero int8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
69 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8::zero uint8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
70 i16nda int16NDArray ND int16NDArray.h YES octave_int16::zero int16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
71 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16::zero uint16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
72 i32nda int32NDArray ND int32NDArray.h YES octave_int32::zero int32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
73 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32::zero uint32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
74 i64nda int64NDArray ND int64NDArray.h YES octave_int64::zero int64_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
75 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64::zero uint64_t |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
76 pm PermMatrix PM PermMatrix.h YES static_cast<octave_idx_type>(0) |
4544 | 77 # ops |
5030 | 78 # result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ... |
4953 | 79 # |
80 # op-type is one of | |
81 # | |
82 # B: binary ops, + - * / | |
83 # C: comparison ops, < <= == != >= > | |
84 # L: logical ops, & | | |
85 # | |
4544 | 86 cdm cdm dm B |
87 cdm dm cdm B | |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
88 cdm cs dm B |
5030 | 89 cm cs m BCL real NONE boolMatrix.h |
90 cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h | |
91 cm cdm cm B | |
92 cm cdm m B | |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
93 cdm cdm s B |
5030 | 94 cm cm cdm B |
95 cm cm dm B | |
96 cm cm m BCL real NONE boolMatrix.h | |
97 cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h | |
98 cm cm s BCL real NONE boolMatrix.h | |
99 cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h | |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
100 cdm dm cs B |
5030 | 101 cm dm cm B |
102 cm m cs BCL NONE real boolMatrix.h | |
103 cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h | |
104 cm m cdm B | |
105 cm m cm BCL NONE real boolMatrix.h | |
106 cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h | |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
107 cdm s cdm B |
5030 | 108 cm s cm BCL NONE real boolMatrix.h |
109 cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h | |
110 m dm m B | |
111 m m dm B | |
4964 | 112 # |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
113 fcdm fcdm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
114 fcdm fdm fcdm B |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
115 fcdm fcs fdm B |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
116 fcm fcs fm BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
117 fcnda fcs fnda BCL real NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
118 fcm fcdm fcm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
119 fcm fcdm fm B |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
120 fcdm fcdm fs B |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
121 fcm fcm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
122 fcm fcm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
123 fcm fcm fm BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
124 fcnda fcnda fnda BCL real NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
125 fcm fcm fs BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
126 fcnda fcnda fs BCL real NONE boolMatrix.h boolNDArray.h |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
127 fcdm fdm fcs B |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
128 fcm fdm fcm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
129 fcm fm fcs BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
130 fcnda fnda fcs BCL NONE real boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
131 fcm fm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
132 fcm fm fcm BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
133 fcnda fnda fcnda BCL NONE real boolMatrix.h boolNDArray.h |
9732
b4fdfee405b5
remove ArrayN<T> + fix nonhom. diag-scalar ops
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
134 fcdm fs fcdm B |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
135 fcm fs fcm BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
136 fcnda fs fcnda BCL NONE real boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
137 fm fdm fm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
138 fm fm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
139 # |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
140 m pm m B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
141 m m pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
142 cm pm cm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
143 cm cm pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
144 fm pm fm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
145 fm fm pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
146 fcm pm fcm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
147 fcm fcm pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
148 # |
5030 | 149 i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
150 i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
151 ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
152 ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
153 i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
154 i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
155 ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
156 ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
157 i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
158 i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
159 ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
160 ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
161 i64nda s i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
162 i64nda i64nda s BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
163 ui64nda s ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
164 ui64nda ui64nda s BCL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
165 i8nda fs i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
166 i8nda i8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
167 ui8nda fs ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
168 ui8nda ui8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
169 i16nda fs i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
170 i16nda i16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
171 ui16nda fs ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
172 ui16nda ui16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
173 i32nda fs i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
174 i32nda i32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
175 ui32nda fs ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
176 ui32nda ui32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
177 i64nda fs i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
178 i64nda i64nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
179 ui64nda fs ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
180 ui64nda ui64nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 181 # |
7625
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
182 i8nda nda i8 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
183 i8nda i8 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
184 ui8nda nda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
185 ui8nda ui8 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
186 i16nda nda i16 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
187 i16nda i16 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
188 ui16nda nda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
189 ui16nda ui16 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
190 i32nda nda i32 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
191 i32nda i32 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
192 ui32nda nda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
193 ui32nda ui32 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
194 i64nda nda i64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
195 i64nda i64 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
196 ui64nda nda ui64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
197 ui64nda ui64 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
198 i8nda fnda i8 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
199 i8nda i8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
200 ui8nda fnda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
201 ui8nda ui8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
202 i16nda fnda i16 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
203 i16nda i16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
204 ui16nda fnda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
205 ui16nda ui16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
206 i32nda fnda i32 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
207 i32nda i32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
208 ui32nda fnda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
209 ui32nda ui32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
210 i64nda fnda i64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
211 i64nda i64 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
212 ui64nda fnda ui64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
213 ui64nda ui64 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 214 # |
7625
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
215 i8nda nda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
216 i8nda i8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
217 ui8nda nda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
218 ui8nda ui8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
219 i16nda nda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
220 i16nda i16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
221 ui16nda nda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
222 ui16nda ui16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
223 i32nda nda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
224 i32nda i32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
225 ui32nda nda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
226 ui32nda ui32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
227 i64nda nda i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
228 i64nda i64nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
229 ui64nda nda ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
230 ui64nda ui64nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
231 i8nda fnda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
232 i8nda i8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
233 ui8nda fnda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
234 ui8nda ui8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
235 i16nda fnda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
236 i16nda i16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
237 ui16nda fnda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
238 ui16nda ui16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
239 i32nda fnda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
240 i32nda i32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
241 ui32nda fnda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
242 ui32nda ui32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
243 i64nda fnda i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
244 i64nda i64nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
245 ui64nda fnda ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
246 ui64nda ui64nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 247 # |
5030 | 248 x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h |
249 x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
250 x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
251 x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
252 x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
253 x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
254 x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 255 # |
5030 | 256 x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
257 x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
258 x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
259 x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
260 x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
261 x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
262 x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 263 # |
5030 | 264 x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
265 x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
266 x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
267 x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
268 x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
269 x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
270 x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 271 # |
5030 | 272 x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
273 x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
274 x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
275 x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
276 x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
277 x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
278 x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 279 # |
5030 | 280 x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
281 x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
282 x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
283 x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
284 x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
285 x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
286 x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 287 # |
5030 | 288 x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
289 x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
290 x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
291 x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
292 x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
293 x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
294 x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 295 # |
5030 | 296 x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
297 x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
298 x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
299 x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
300 x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
301 x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
302 x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 303 # |
5030 | 304 x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
305 x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
306 x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
307 x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
308 x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
309 x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
310 x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 311 # |
5030 | 312 x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
313 x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
314 x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
315 x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
316 x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
317 x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
318 x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 319 # |
5030 | 320 x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
321 x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
322 x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
323 x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
324 x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
325 x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
326 x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 327 # |
5030 | 328 x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
329 x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
330 x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
331 x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
332 x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
333 x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
334 x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 335 # |
5030 | 336 x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
337 x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
338 x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
339 x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
340 x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
341 x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
342 x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 343 # |
5030 | 344 x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
345 x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
346 x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
347 x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
348 x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
349 x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
350 x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 351 # |
5030 | 352 x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
353 x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
354 x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
355 x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
356 x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
357 x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
358 x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 359 # |
5030 | 360 x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
361 x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
362 x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
363 x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
364 x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
365 x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
366 x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 367 # |
5030 | 368 x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
369 x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
370 x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
371 x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
372 x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
373 x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
374 x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 375 # |
5030 | 376 x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
377 x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
378 x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
379 x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
380 x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
381 x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
382 x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 383 # |
5030 | 384 x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
385 x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
386 x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
387 x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
388 x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
389 x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
390 x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 391 # |
5030 | 392 x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
393 x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
394 x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
395 x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
396 x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
397 x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
398 x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 399 # |
5030 | 400 x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
401 x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
402 x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
403 x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
404 x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
405 x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
406 x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 407 # |
5030 | 408 x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
409 x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
410 x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
411 x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
412 x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
413 x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
414 x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 415 # |
5030 | 416 x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
417 x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
418 x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
419 x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
420 x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
421 x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
422 x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 423 # |
5030 | 424 x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
425 x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
426 x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
427 x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
428 x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
429 x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
430 x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 431 # |
5030 | 432 x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
433 x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
434 x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
435 x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
436 x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
437 x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
438 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h |