Crude implementation of matrices using nalgebra

This commit is contained in:
2023-12-19 15:37:32 +01:00
parent 2e44890c53
commit 8a2c675d71
7 changed files with 287 additions and 84 deletions

View File

@@ -20,13 +20,13 @@ pub const TEST_KERNEL: Kernel = Kernel([
Instruction::MAC {
src0: File::Bank,
src1: File::GrfA { index: 0 },
src2: File::GrfA { index: 1 },
dst: File::GrfA { index: 1 },
src2: File::GrfB { index: 0 },
dst: File::GrfB { index: 0 },
aam: false,
},
Instruction::MAC {
src0: File::Bank,
src1: File::GrfB { index: 0 },
src1: File::GrfA { index: 1 },
src2: File::GrfB { index: 1 },
dst: File::GrfB { index: 1 },
aam: false,