Für zwei gegebene Vektoren soll das
Skalarprodukt (x^T * y
) berechnet werden.
Maximale Codelänge: 4096 Bytes
Maximale Anzahl an ausführbaren Instruktionen: 3 * n + 300
#include <stddef.h>
#include <immintrin.h>
float sdot(size_t n, const float x[n], const float y[n]);
Hinweis: Nutzung des Aufgabentesters erst nach Login möglich.