Beispiel #1
0
 public Tensor Trunc(Tensor x)
 {
     return(Out(Arith.Trunc(In(x))));
 }
Beispiel #2
0
 public Tensor Minimum(Tensor a, Tensor b)
 {
     return(Out(Arith.MinOf(In(a), In(b))));
 }
Beispiel #3
0
 public Tensor Tpow(float value, Tensor x)
 {
     return(Out(Arith.Pow(In(value, x.Shape), In(x))));
 }
Beispiel #4
0
 public Tensor Tanh(Tensor x)
 {
     return(Out(Arith.Tanh(In(x))));
 }
Beispiel #5
0
 public Tensor Atan2(Tensor lhs, Tensor rhs)
 {
     return(Out(Arith.Atan2(In(lhs), In(rhs))));
 }
Beispiel #6
0
 public Tensor Clip(Tensor x, float min, float max)
 {
     return(Out(Arith.Clamp(In(x), In(min, x.Shape), In(max, x.Shape))));
 }
Beispiel #7
0
 public Tensor Round(Tensor x)
 {
     return(Out(Arith.Round(In(x))));
 }
Beispiel #8
0
 public Tensor EqualTo(Tensor a, Tensor b)
 {
     return(Out(Arith.EqualTo(In(a), In(b))));
 }
Beispiel #9
0
 public Tensor Log1p(Tensor x)
 {
     return(Out(Arith.Log1p(In(x))));
 }
Beispiel #10
0
 public Tensor Pow(Tensor x, float value)
 {
     return(Out(Arith.Pow(In(x), In(value, x.Shape))));
 }
Beispiel #11
0
 public Tensor Factorial(Tensor x)
 {
     return(Out(Arith.Factorial(In(x))));
 }
Beispiel #12
0
 public Tensor Floor(Tensor x)
 {
     return(Out(Arith.Floor(In(x))));
 }
Beispiel #13
0
 public Tensor Exp(Tensor x)
 {
     return(Out(Arith.Exp(In(x))));
 }
Beispiel #14
0
 public Tensor Minimum(Tensor a, float b)
 {
     return(Out(Arith.MinOf(In(a), In(b, a.Shape))));
 }
Beispiel #15
0
 public Tensor Sigmoid(Tensor x)
 {
     return(Out(Arith.Sigmoid(In(x))));
 }
Beispiel #16
0
 public Tensor Acos(Tensor x)
 {
     return(Out(Arith.Acos(In(x))));
 }
Beispiel #17
0
 public Tensor Sinh(Tensor x)
 {
     return(Out(Arith.Sinh(In(x))));
 }
Beispiel #18
0
 public Tensor Atan(Tensor x)
 {
     return(Out(Arith.Atan(In(x))));
 }
Beispiel #19
0
 public Tensor Sqrt(Tensor x)
 {
     return(Out(Arith.Sqrt(In(x))));
 }
Beispiel #20
0
 public Tensor Ceil(Tensor x)
 {
     return(Out(Arith.Ceil(In(x))));
 }
Beispiel #21
0
 public Tensor Square(Tensor x)
 {
     return(Out(Arith.Pow(In(x), In(2, x.Shape))));
 }
Beispiel #22
0
 public Tensor Cos(Tensor x)
 {
     return(Out(Arith.Cos(In(x))));
 }
Beispiel #23
0
 public Tensor Square(Tensor x)
 {
     return(Out(Arith.Pow2(In(x))));
 }