How can I use Three Dimensional Array #556
-
Hi, dim[0][0][0] = 4; after set the values I want to start parallel loop
is this somehow possible with TornadoVm. I have analysed every possible types like matrix, vector but I couldn't find any solution to solve this issue. Can someone please help me? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
TornadoVM does not support explicit 2D and 3D Java ND-Arrays. Instead, TornadoVM offers 2D and 3D Panama segments (implemented in with flatten arrays). I don't think we have for We can add a 3D |
Beta Was this translation helpful? Give feedback.
-
Hi @jjfumero , |
Beta Was this translation helpful? Give feedback.
TornadoVM does not support explicit 2D and 3D Java ND-Arrays. Instead, TornadoVM offers 2D and 3D Panama segments (implemented in with flatten arrays). I don't think we have for
int
types, but we have forfloat
:TornadoVM/tornado-unittests/src/main/java/uk/ac/manchester/tornado/unittests/matrices/TestMatrixTypes.java
Lines 614 to 644 in e74c574