Beispiel #1
0
 public Tensor Dot(Tensor a, Tensor b)
 {
     return(Out(C.MatMul(In(a), In(b))));
 }