Skip to content

Commit

Permalink
whatever
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Feb 9, 2024
1 parent 272f131 commit 60c2e8c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sw/blas/gemm/data/params.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
// Parameters for a GEMM

{
M: 32,
N: 4,
K: 4,
M: 192,
N: 16,
K: 16,
beta: 0,
ta: false,
tb: false, // must be true for SIMD
tb: true, // must be true for SIMD
prec: 64,
expand: 0,
m_tiles: 2, // number of tiles in M dimension
k_tiles: 2, // number of tiles in K dimension
n_tiles: 2, // number of tiles in N dimension
k_tiles: 1, // number of tiles in K dimension
n_tiles: 1, // number of tiles in N dimension
parallelize_k: 0,
parallelize_m: 1,
baseline: true
parallelize_m: 0,
baseline: false
}

0 comments on commit 60c2e8c

Please sign in to comment.