-
Notifications
You must be signed in to change notification settings - Fork 23
v0.7 upgrade, comments, bugfixes and cleanup #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
f40ac89
7078229
52b8322
2b9e314
26ba084
22ba11e
110e1c5
87cb134
e812e22
686222c
ad2be73
9443fe5
5248060
3913da1
8bc5deb
e89a333
d193468
aee7c2d
cd43348
4d3929f
e0b9684
b70d841
37d9576
716973b
f67246c
f0f22f0
a495879
20948ec
933f9b7
ca7ba87
e15ef16
7ed4c68
b519b1c
df9db80
76ac8f1
c467855
94bd0df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
julia 0.6 | ||
IterativeSolvers 0.4.1 | ||
julia 0.7 | ||
IterativeSolvers 0.7.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should probably use v0.6.0 because IterativeSolvers 0.7.0 needs Julia 0.7 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually more stuff need to be changed, I was running the tests wrongly. This too yes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cool, ping me when you're done making all those. We should add v0.7 to |
||
Compat 1.0.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
module AMG | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you also modify this module name to |
||
|
||
import IterativeSolvers: gauss_seidel! | ||
using Compat, Compat.LinearAlgebra | ||
using Compat.SparseArrays, Compat.Printf | ||
using Base.Threads | ||
|
||
const MT = false | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we still maintain v0.6 compatibility?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe through
Compat
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was mostly supported thanks to
Compat
, just needed a few@static
if statements.