Previous Optimisation of Hadamard product |
Parent Optimisation of Hadamard product |
Outline | Next Main to evaluate the Hadamard product |
In C++ code :
1 2 3 4 5 |
void hadamard_product(float* tabResult, const float * tabX, const float* tabY, long unsigned int nbElement){ for(long unsigned int i(0lu); i < nbElement; ++i){ tabResult[i] = tabX[i]*tabY[i]; } } |
Previous Optimisation of Hadamard product |
Parent Optimisation of Hadamard product |
Outline | Next Main to evaluate the Hadamard product |