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