-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avx perfomance degradation compared to SSE #49
Comments
Hi. Could you to let know your info about your CPU ? |
I test it on two cpu: Intel Core I5-2500k and Intel Xeon CPU E3-1225 V3 |
Is the performance decreasing strong? |
It is not strong, but AVX has 256 bit and SSE 128 bit, so I think it must be faster, not slower in any case. I test it not on test framework, but with my test program. For first image SSE give me 0.45 ms time and AVX 0.55 ms (on I5), for the second image (neural was the same, but with different input size of image) AVX 1.43 ms and SSE 1.38 ms (on Xeon). Of cource I can disable AVX, but I think that such results are strange. |
What is the function? |
NeuralSimple.txt |
Neural is depricated now. Use Synet. |
Hi. I test some neural network with AVX2, AVX and SSE instructions and found that AVX is less perfomance than even SSE. I think this is a problem or maybe AVX is meaningless for neural network (or my type of neural network).
The text was updated successfully, but these errors were encountered: