-
Notifications
You must be signed in to change notification settings - Fork 82
1.11 assertion #2543
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
1.11 assertion #2543
Conversation
|
Your PR requires formatting changes to meet the project's style guidelines. Click here to view the suggested changes.diff --git a/test/runtests.jl b/test/runtests.jl
index 0827ba8..103db3a 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -75,7 +75,7 @@ Enzyme.API.printall!(true)
@testset "Threads" begin
cmd = `$(Base.julia_cmd()) --threads=1 --startup-file=no threads.jl`
- @test success(pipeline(cmd, stderr=stderr, stdout=stdout))
+ @test success(pipeline(cmd, stderr = stderr, stdout = stdout))
cmd = `$(Base.julia_cmd()) --threads=2 --startup-file=no threads.jl`
- @test success(pipeline(cmd, stderr=stderr, stdout=stdout))
+ @test success(pipeline(cmd, stderr = stderr, stdout = stdout))
end
diff --git a/test/threads.jl b/test/threads.jl
index 1fcb3b8..c69ebbf 100644
--- a/test/threads.jl
+++ b/test/threads.jl
@@ -22,5 +22,5 @@ using Test
@inbounds x[i] *= x[i]
end
end
-
+
end |
Benchmark Results
Benchmark PlotsA plot of the benchmark results has been uploaded as an artifact at https://github.com/EnzymeAD/Enzyme.jl/actions/runs/17349886255/artifacts/3890705955. |
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## main #2543 +/- ##
===========================================
- Coverage 74.92% 31.74% -43.19%
===========================================
Files 56 56
Lines 17428 17547 +119
===========================================
- Hits 13058 5570 -7488
- Misses 4370 11977 +7607 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Comment out Enzyme.autodiff call and add psquare0 call.
No description provided.