Clearing up some memory to prevent stupid issues
Preparing for some optimisations. (absolutely need to reduce the ammount of allocations done.)
This commit is contained in:
@@ -125,7 +125,6 @@ Matrix Matrix::transpose()
|
||||
int x, y;
|
||||
Matrix ret = Matrix(this->size);
|
||||
|
||||
#pragma omp parallel for simd private(y, x)
|
||||
for (y = 0 ; y < this->size ; y++)
|
||||
{
|
||||
for (x = 0 ; x < this->size ; x++)
|
||||
|
||||
Reference in New Issue
Block a user