CPP icon indicating copy to clipboard operation
CPP copied to clipboard

[Bug]: Little bug in week08

Open Jayfeather233 opened this issue 2 years ago • 0 comments

At week08/examples/matoperation.cpp

float sum[8]={0};

this may lead to discontinues memory, use

float *sum = static_cast<float*>(aligned_alloc(256, 8*sizeof(float)));

instead may be better?

Jayfeather233 avatar Nov 10 '22 03:11 Jayfeather233