diff options
| author | Tyge Lovset <[email protected]> | 2023-08-19 08:57:53 +0200 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2023-08-19 08:57:53 +0200 |
| commit | e51376c9b72448dad947c3cd3760ab013ca8e4a5 (patch) | |
| tree | 0651e570f3807affbc7d7f3f6f8270e662ab96ab /misc/examples | |
| parent | 18a0648d8a9f7dcaf3ce145d8d671679bd46d388 (diff) | |
| download | STC-modified-e51376c9b72448dad947c3cd3760ab013ca8e4a5.tar.gz STC-modified-e51376c9b72448dad947c3cd3760ab013ca8e4a5.zip | |
Moved cspan_next() to shared implementation (if chosen).
Diffstat (limited to 'misc/examples')
| -rw-r--r-- | misc/examples/spans/matmult.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/spans/matmult.c b/misc/examples/spans/matmult.c index b28e6459..35dad7a9 100644 --- a/misc/examples/spans/matmult.c +++ b/misc/examples/spans/matmult.c @@ -41,7 +41,7 @@ void recursive_matrix_product(Mat2 A, Mat2 B, OutMat C) if (C.shape[0] <= recursion_threshold || C.shape[1] <= recursion_threshold) { base_case_matrix_product(A, B, C); } else { - Partition c = partition(C), + Partition c = partition(C), a = partition(A), b = partition(B); recursive_matrix_product(a.m00, b.m00, c.m00); |
