Exemplo n.º 1
0
 public DMatrix sqrti() {
   SimpleCuBlas.sqrt(this);
   return this;
 }
Exemplo n.º 2
0
 public DMatrix sqrt() {
   DMatrix m = new CUDAMatrix(this.rows, this.columns(), this.toArray());
   SimpleCuBlas.sqrt(m);
   return m;
 }