fix whitespace

This commit is contained in:
richinseattle
2023-07-26 22:12:32 -07:00
committed by GitHub
parent 7f7a3b2d56
commit 539dc73196
+2 -1
View File
@@ -194,7 +194,8 @@ void matmul(float* xout, float* x, float* w, int n, int d) {
// W (d,n) @ x (n,) -> xout (d,)
int i;
#pragma omp parallel for private(i)
for (i = 0; i < d; i++) { float val = 0.0f;
for (i = 0; i < d; i++) {
float val = 0.0f;
for (int j = 0; j < n; j++) {
val += w[i * n + j] * x[j];
}