Interface MatrixInt
access this type via: io.compute.MatrixInt (provides, requires or uses)
--- extends:ExtMemory
This interface represents a integer type matrix stored on an external compute device
Functions
MatrixInt(storeCompute device, int height, int width)
void write(int content[][])
int[][] read()
MatrixInt(storeCompute device, int height, int width)
Creates the matrix with the given height and width on the given Compute device
void write(int content[][])
Writes to the matrix starting at index [0][0] up to the height and width of the host 2d-array given by content
int[][] read()
Reads the entire matrix stored on the external Compute device, returns this as a host 2d-array