Skip to content

Commit

Permalink
fix linear algebra
Browse files Browse the repository at this point in the history
  • Loading branch information
willow-ahrens committed May 8, 2023
1 parent 49f0e1c commit 7a5c0ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/linalg.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function spgemm_inner(A, B)
z = default(A) * default(B)
z = default(A) * default(B) + false
C = @fiber d(sl(e(z)))
w = @fiber sh{2}(e(z))
AT = @fiber d(sl(e(z)))
Expand All @@ -10,7 +10,7 @@ function spgemm_inner(A, B)
end

function spgemm_outer(A, B)
z = default(A) * default(B)
z = default(A) * default(B) + false
C = @fiber d(sl(e(z)))
w = @fiber sh{2}(e(z))
BT = @fiber d(sl(e(z)))
Expand All @@ -22,7 +22,7 @@ function spgemm_outer(A, B)
end

function spgemm_gustavson(A, B)
z = default(A) * default(B)
z = default(A) * default(B) + false
C = @fiber d(sl(e(z)))
w = @fiber sbm(e(z))
@finch begin
Expand Down

2 comments on commit 7a5c0ba

@willow-ahrens
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/83138

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.4 -m "<description of version>" 7a5c0ba45df422ecc04b67e49fd357f81f311e24
git push origin v0.5.4

Please sign in to comment.