public v4_f16(reg_f16 x, reg_f16 y, reg_f16 z, reg_f16 w) { ElementType = f16; Elements.Add(x.AssertCast<var>()); Elements.Add(y.AssertCast<var>()); Elements.Add(z.AssertCast<var>()); Elements.Add(w.AssertCast<var>()); }
public v1_f16(reg_f16 x) { ElementType = f16; Elements.Add(x.AssertCast<var>()); }
public static v4_f16 v4(reg_f16 x, reg_f16 y, reg_f16 z, reg_f16 w) { return new v4_f16(x, y, z, w); }
public static v2_f16 v2(reg_f16 x, reg_f16 y) { return new v2_f16(x, y); }
public static v1_f16 v1(reg_f16 x) { return new v1_f16(x); }
public v2_f16(reg_f16 x, reg_f16 y) { ElementType = f16; Elements.Add(x.AssertCast<var>()); Elements.Add(y.AssertCast<var>()); }