Skip to content

Commit

Permalink
Fix styling and variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
nhatdongdang committed Jul 7, 2024
1 parent 30e6535 commit 9ed1a71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ typedef signed long i64;
#define KERN_COLS 8
#define KERN_ROWS 4
#define SIMD_ALIGN 32
#define SIMD_ALIGN_F32 (SIMD_ALIGN / 4) // f32 is 4 bytes
#define SIMD_ALIGN_F32 (SIMD_ALIGN / sizeof(f32)) // f32 is 4 bytes

typedef struct vector {
int len;
Expand Down

0 comments on commit 9ed1a71

Please sign in to comment.