Is ND4J faster than the normal Java arrays? I've done a basic test by initializing a 100x100 ND4J array then printing it, then did the same for a normal array. The execution time of the normal array is 10x faster. Any idea?
ND4J code:
INDArray a = Nd4j.ones(100,100);
System.out.println(a);
Execution time is around 1700 ms. For standard arrays it is around 150 ms.