Skip to content
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

Scheduler: Use the root task as a scheduler task (alternative 1) #57543

Closed
wants to merge 1 commit into from

Conversation

kpamnany
Copy link
Contributor

@kpamnany kpamnany commented Feb 26, 2025

Alternative (incomplete) approach to #57465; please discuss there.

@@ -711,6 +719,12 @@ JL_DLLEXPORT void jl_switch(void) JL_NOTSAFEPOINT_LEAVE JL_NOTSAFEPOINT_ENTER
if (other_defer_signal && !defer_signal)
jl_sigint_safepoint(ptls);

if (ptls->wait_in_scheduler) {
ptls->wait_in_scheduler = 0;
jl_set_next_task(jl_task_get_next());
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@vtjnash: how would we get the various arguments needed for jl_task_get_next here?

Copy link
Member

Choose a reason for hiding this comment

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

That seems quite tedious. I think #57544 is probably the better direction to go

@kpamnany
Copy link
Contributor Author

Closing in favor of #57544.

@kpamnany kpamnany closed this Feb 28, 2025
@kpamnany kpamnany deleted the kp-sched-task-alt1 branch February 28, 2025 00:21
kpamnany added a commit that referenced this pull request Mar 27, 2025
A Julia thread runs Julia's scheduler in the context of the switching
task. If no task is found to switch to, the thread will sleep while
holding onto the (possibly completed) task, preventing the task from
being garbage collected. This recent [Discourse
post](https://discourse.julialang.org/t/weird-behaviour-of-gc-with-multithreaded-array-access/125433)
illustrates precisely this problem.

A solution to this would be for an idle Julia thread to switch to a
"scheduler" task, thereby freeing the old task.

This PR uses `OncePerThread` to create a "scheduler" task (that does
nothing but run `wait()` in a loop) and switches to that task when the
thread finds itself idle.

Other approaches considered and discarded in favor of this one:
#57465 and
#57543.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants