Saxpy

Für zwei gegebene Vektoren und eine Konstante soll das y = alpha * x + y) berechnet werden.

Maximale Codelänge: 4096 Bytes
Maximale Anzahl an ausführbaren Instruktionen: 3 * n + 300

#include <stddef.h>
#include <immintrin.h>
void saxpy(size_t n, float alpha, const float x[n], float y[restrict n]);

Hinweis: Nutzung des Aufgabentesters erst nach Login möglich.