File tree Expand file tree Collapse file tree 5 files changed +163
-130
lines changed Expand file tree Collapse file tree 5 files changed +163
-130
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ under the licensing terms detailed in LICENSE:
4949* Peter Hayman <peteyhayman@gmail.com>
5050* ApsarasX <apsarax@outlook.com>
5151* Adrien Zinger <zinger.ad@gmail.com>
52+ * Ruixiang Chen <xiang19890319@gmail.com>
5253
5354Portions of this software are derived from third-party works licensed under
5455the following terms:
Original file line number Diff line number Diff line change @@ -844,9 +844,9 @@ declare namespace v128 {
844844 /** Computes the maximum of each lane. */
845845 export function max < T > ( a : v128 , b : v128 ) : v128 ;
846846 /** Computes the pseudo-minimum of each lane. */
847- export function pmin < T > ( a : v128 , b : v128 ) : v128 ;
847+ export function pmin < T extends f32 | f64 > ( a : v128 , b : v128 ) : v128 ;
848848 /** Computes the pseudo-maximum of each lane. */
849- export function pmax < T > ( a : v128 , b : v128 ) : v128 ;
849+ export function pmax < T extends f32 | f64 > ( a : v128 , b : v128 ) : v128 ;
850850 /** Computes the dot product of two lanes each, yielding lanes one size wider than the input. */
851851 export function dot < T extends i16 > ( a : v128 , b : v128 ) : v128 ;
852852 /** Computes the average of each lane. */
You can’t perform that action at this time.
0 commit comments