-
Notifications
You must be signed in to change notification settings - Fork 9
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
2037 - Remove workers from vt #2058
Conversation
There should also be some removals from documentation. |
d4c6454
to
95d3d8a
Compare
@lifflander Should I also remove the |
95d3d8a
to
67c97ad
Compare
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.
Definitely don't remove fcontext. We're using that for real application work, and actively developing and improving it
2ac952b
to
641ddf9
Compare
a4280c1
to
77bcb99
Compare
Codecov Report
@@ Coverage Diff @@
## develop #2058 +/- ##
===========================================
+ Coverage 84.47% 84.78% +0.31%
===========================================
Files 730 723 -7
Lines 25842 25647 -195
===========================================
- Hits 21829 21746 -83
+ Misses 4013 3901 -112
|
I think this might be an independent failure caused by a newer |
77bcb99
to
149d9bd
Compare
f99fcd1
to
708a084
Compare
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.
Looks good to me!
The failing pipelines seem to have nothing to do with this PR. |
The commit signatures will need to be fixed |
There's no problem with them. The github action is being very unstable. |
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.
Other than maybe some left-over bits that can also be deleted, this looks good to me.
This runs fine on my machine with IntelLLVM 2023.0.0
I'll try running it inside container 🤷 |
cmake/load_threading_package.cmake
Outdated
@@ -20,11 +10,11 @@ if(vt_fcontext_enabled) | |||
STATUS | |||
"Using fcontext for worker threading" | |||
) | |||
config_for_fcontext() | |||
set(vt_fcontext_enabled "1") |
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.
This can go away too, can't it? if (X) set(X)
?
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.
Ah yes! removed.
319677c
to
26333a5
Compare
Closes #2037