Skip to content

Commit

Permalink
mma_sp: Correct sparsity selector
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Dec 20, 2023
1 parent 8dc0b35 commit da9a280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IndexSpaces.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2616,7 +2616,7 @@ function mma_sp_row_col_m16n8k16_f16!(
end
a_row_patterns = NTuple{2,Int}[decode_row_pattern(row, col) for row in 0:15, col in 0:4:15]
@show a_row_patterns
e = [Int16x2(reinterpret(Int, vec(a_row_patterns[thread+1:8:16,:]))...) for thread in 0:4:31]
e = [Int2x16(reinterpret(Int, vec(a_row_patterns[thread+1:8:16,:]))...) for thread in 0:4:31]
@show e
push!(
emitter.statements,
Expand Down

0 comments on commit da9a280

Please sign in to comment.