@@ -30,56 +30,95 @@ var dtypes = require( '@stdlib/ndarray/dtypes' );
3030// MAIN // 
3131
3232var  types  =  [ 
33- 	// complex64 (2) 
34- 	dtypes . complex64 ,  dtypes . complex64 , 
33+ 	// complex64 (3) 
3534	dtypes . complex64 ,  dtypes . complex128 , 
35+ 	dtypes . complex64 ,  dtypes . complex64 , 
36+ 	dtypes . complex64 ,  dtypes . generic , 
3637
37- 	// complex128 (1 ) 
38+ 	// complex128 (3 ) 
3839	dtypes . complex128 ,  dtypes . complex128 , 
40+ 	dtypes . complex128 ,  dtypes . complex64 , 
41+ 	dtypes . complex128 ,  dtypes . generic , 
3942
40- 	// float32 (2) 
41- 	dtypes . float32 ,  dtypes . float32 , 
43+ 	// float32 (5) 
4244	dtypes . float32 ,  dtypes . float64 , 
45+ 	dtypes . float32 ,  dtypes . float32 , 
46+ 	dtypes . float32 ,  dtypes . complex128 , 
47+ 	dtypes . float32 ,  dtypes . complex64 , 
48+ 	dtypes . float32 ,  dtypes . generic , 
4349
44- 	// float64 (1 ) 
50+ 	// float64 (5 ) 
4551	dtypes . float64 ,  dtypes . float64 , 
52+ 	dtypes . float64 ,  dtypes . float32 , 
53+ 	dtypes . float64 ,  dtypes . complex128 , 
54+ 	dtypes . float64 ,  dtypes . complex64 , 
55+ 	dtypes . float64 ,  dtypes . generic , 
4656
47- 	// int16 (4) 
48- 	dtypes . int16 ,  dtypes . float32 , 
57+ 	// int16 (8) 
4958	dtypes . int16 ,  dtypes . float64 , 
50- 	dtypes . int16 ,  dtypes . int16 , 
59+ 	dtypes . int16 ,  dtypes . float32 , 
60+ 	dtypes . int16 ,  dtypes . int64 , 
5161	dtypes . int16 ,  dtypes . int32 , 
62+ 	dtypes . int16 ,  dtypes . int16 , 
63+ 	dtypes . int16 ,  dtypes . complex128 , 
64+ 	dtypes . int16 ,  dtypes . complex64 , 
65+ 	dtypes . int16 ,  dtypes . generic , 
5266
53- 	// int32 (2 ) 
67+ 	// int32 (5 ) 
5468	dtypes . int32 ,  dtypes . float64 , 
69+ 	dtypes . int32 ,  dtypes . int64 , 
5570	dtypes . int32 ,  dtypes . int32 , 
71+ 	dtypes . int32 ,  dtypes . complex128 , 
72+ 	dtypes . int32 ,  dtypes . generic , 
5673
57- 	// int8 (5) 
58- 	dtypes . int8 ,  dtypes . float32 , 
74+ 	// int8 (9) 
5975	dtypes . int8 ,  dtypes . float64 , 
60- 	dtypes . int8 ,  dtypes . int16 , 
76+ 	dtypes . int8 ,  dtypes . float32 , 
77+ 	dtypes . int8 ,  dtypes . int64 , 
6178	dtypes . int8 ,  dtypes . int32 , 
79+ 	dtypes . int8 ,  dtypes . int16 , 
6280	dtypes . int8 ,  dtypes . int8 , 
81+ 	dtypes . int8 ,  dtypes . complex128 , 
82+ 	dtypes . int8 ,  dtypes . complex64 , 
83+ 	dtypes . int8 ,  dtypes . generic , 
6384
64- 	// uint16 (5) 
65- 	dtypes . uint16 ,  dtypes . float32 , 
85+ 	// uint16 (10) 
6686	dtypes . uint16 ,  dtypes . float64 , 
87+ 	dtypes . uint16 ,  dtypes . float32 , 
88+ 	dtypes . uint16 ,  dtypes . int64 , 
6789	dtypes . uint16 ,  dtypes . int32 , 
68- 	dtypes . uint16 ,  dtypes . uint16 , 
90+ 	dtypes . uint16 ,  dtypes . uint64 , 
6991	dtypes . uint16 ,  dtypes . uint32 , 
92+ 	dtypes . uint16 ,  dtypes . uint16 , 
93+ 	dtypes . uint16 ,  dtypes . complex128 , 
94+ 	dtypes . uint16 ,  dtypes . complex64 , 
95+ 	dtypes . uint16 ,  dtypes . generic , 
7096
71- 	// uint32 (2 ) 
97+ 	// uint32 (6 ) 
7298	dtypes . uint32 ,  dtypes . float64 , 
99+ 	dtypes . uint32 ,  dtypes . int64 , 
100+ 	dtypes . uint32 ,  dtypes . uint64 , 
73101	dtypes . uint32 ,  dtypes . uint32 , 
102+ 	dtypes . uint32 ,  dtypes . complex128 , 
103+ 	dtypes . uint32 ,  dtypes . generic , 
74104
75- 	// uint8 (7) 
76- 	dtypes . uint8 ,  dtypes . float32 , 
105+ 	// uint8 (12) 
77106	dtypes . uint8 ,  dtypes . float64 , 
78- 	dtypes . uint8 ,  dtypes . int16 , 
107+ 	dtypes . uint8 ,  dtypes . float32 , 
108+ 	dtypes . uint8 ,  dtypes . int64 , 
79109	dtypes . uint8 ,  dtypes . int32 , 
80- 	dtypes . uint8 ,  dtypes . uint16 , 
110+ 	dtypes . uint8 ,  dtypes . int16 , 
111+ 	dtypes . uint8 ,  dtypes . uint64 , 
81112	dtypes . uint8 ,  dtypes . uint32 , 
82- 	dtypes . uint8 ,  dtypes . uint8 
113+ 	dtypes . uint8 ,  dtypes . uint16 , 
114+ 	dtypes . uint8 ,  dtypes . uint8 , 
115+ 	dtypes . uint8 ,  dtypes . complex128 , 
116+ 	dtypes . uint8 ,  dtypes . complex64 , 
117+ 	dtypes . uint8 ,  dtypes . generic , 
118+ 
119+ 	// generic (2) 
120+ 	dtypes . generic ,  dtypes . float64 , 
121+ 	dtypes . generic ,  dtypes . complex128 
83122] ; 
84123
85124
0 commit comments