Skip to content

Commit

Permalink
Style fix arghh
Browse files Browse the repository at this point in the history
  • Loading branch information
rozukke committed Jul 7, 2024
1 parent bed990b commit 6e8df3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ void propagate_fwd(const matrix* weights, const float* inputs, float* results, c
// Minumum number of alligned_alloc without breaking things.
// This code f***ing sucks but its fast so uhhhh
u8 infer_reuse_layers_thread(vector* input, matrix** weights, vector** biases) {
float out0[98] __attribute__ ((aligned(SIMD_ALIGN))) = {0};
float out1[65] __attribute__ ((aligned(SIMD_ALIGN))) = {0};
float out0[98] __attribute__((aligned(SIMD_ALIGN))) = {0};
float out1[65] __attribute__((aligned(SIMD_ALIGN))) = {0};

propagate_fwd(weights[0], input->data, out0, biases[0]);
relu_inplace(out0, 98);
Expand Down

0 comments on commit 6e8df3f

Please sign in to comment.