Passed
Push — main ( 051221...b63ebb )
by Shubham
02:26
created
src/core/lapack.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -167,10 +167,10 @@
 block discarded – undo
167 167
         self::init();
168 168
         if($m->dtype == \Np\matrix::FLOAT){
169 169
             return self::$ffi_lapack->LAPACKE_sgels( $matLayout, $trans, $m->row, $m->col, $b->col, $m->data,
170
-                          $m->col, $b->data, $b->col );
170
+                            $m->col, $b->data, $b->col );
171 171
         }
172 172
         return self::$ffi_lapack->LAPACKE_dgels( $matLayout, $trans, $m->row, $m->col, $b->col, $m->data,
173
-                          $m->col, $b->data, $b->col );
173
+                            $m->col, $b->data, $b->col );
174 174
     }
175 175
 
176 176
 }
Please login to merge, or discard this patch.