-
Notifications
You must be signed in to change notification settings - Fork 19
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
Simplify precompilation options #700
Conversation
src/Finch.jl
Outdated
for j in _, i in _ | ||
y[i] += A[i, j] * x[j] | ||
end |
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.
[JuliaFormatter] reported by reviewdog 🐶
for j in _, i in _ | |
y[i] += A[i, j] * x[j] | |
end | |
for j in _, i in _ | |
y[i] += A[i, j] * x[j] |
src/Finch.jl
Outdated
y[i] += A[i, j] * x[j] | ||
end | ||
end | ||
)) |
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.
[JuliaFormatter] reported by reviewdog 🐶
)) | |
end | |
)) |
src/Finch.jl
Outdated
|
||
formats = [] | ||
Ts = [Int, Float64]#, Bool] | ||
|
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.
[JuliaFormatter] reported by reviewdog 🐶
src/Finch.jl
Outdated
if @load_preference("precompile", true) | ||
@info "Running enhanced precompilation... (to disable, run `using Preferences; Preferences.set_preferences!(\"Finch\", \"precompile\"=>false)`" | ||
include("../test/precompile.jl") | ||
|
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.
[JuliaFormatter] reported by reviewdog 🐶
src/Finch.jl
Outdated
end | ||
A = deepcopy(format) | ||
B = deepcopy(format) | ||
|
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.
[JuliaFormatter] reported by reviewdog 🐶
src/Finch.jl
Outdated
end | ||
|
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.
[JuliaFormatter] reported by reviewdog 🐶
Codecov ReportAll modified and coverable lines are covered by tests ✅
|
PrecompileTools now recognizes "precompile_workload" preference.