diff options
author | Determinant <[email protected]> | 2015-05-31 11:18:16 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-05-31 11:18:16 +0800 |
commit | ab12a9583bdd39884fde9bc2444e6fd1bc5f518e (patch) | |
tree | 11d6bf3b4aafd4a07cf78fe8dc921fa5280d8a3e /matrix/generic/matrix.c | |
parent | c6f6ac13a1cf00e440e998422f89b42c69b073a6 (diff) |
add async copy by index; add MMatrixInt
Diffstat (limited to 'matrix/generic/matrix.c')
-rw-r--r-- | matrix/generic/matrix.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/matrix/generic/matrix.c b/matrix/generic/matrix.c index e0098de..a0f9ecf 100644 --- a/matrix/generic/matrix.c +++ b/matrix/generic/matrix.c @@ -2,9 +2,6 @@ #include "../../common.h" #include "matrix.h" -#define MATRIX_ROW_PTR(self, row) \ - (MATRIX_ELEM *)((char *)MATRIX_ELEM_PTR(self) + (row) * (self)->stride) - extern const char *nerv_matrix_(tname); extern const char *MATRIX_BASE_TNAME; |