示例#1
0
文件: v2_f64.cs 项目: xeno-by/libptx
 public v2_f64(reg_f64 x, reg_f64 y)
 {
     ElementType = f64;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
示例#2
0
文件: vector.cs 项目: xeno-by/libptx
 public static v2_f64 v2(reg_f64 x, reg_f64 y) { return new v2_f64(x, y); }
示例#3
0
文件: v1_f64.cs 项目: xeno-by/libptx
 public v1_f64(reg_f64 x)
 {
     ElementType = f64;
     Elements.Add(x.AssertCast<var>());
 }
示例#4
0
文件: vector.cs 项目: xeno-by/libptx
 public static v1_f64 v1(reg_f64 x) { return new v1_f64(x); }