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

feat: Support Sequential ParExec #265

Merged
merged 1 commit into from
Jul 29, 2024

Conversation

DavePearce
Copy link
Collaborator

This puts in place support for using a sequential ParExec implementation. This is a first step towards parallelising trace expansion. Specifically, there are two outstanding issues to resolve: firstly, we must be able to add expanded columns in arbitrary order; secondly, we need to actually make ParExec operate in parallel (which make require making trace thread-safe or something).

The issue around the order in which expanded columns are added to the trace is problematic as the current design essentially expects them to be added in a specific order. Instead, we need assignments and input columns to know what their target column index is. Then, we expanding the trace, they can specify this.

@DavePearce DavePearce linked an issue Jul 29, 2024 that may be closed by this pull request
This puts in place support for using a sequential ParExec
implementation.  This is a first step towards parallelising trace
expansion.  Specifically, there are two outstanding issues to resolve:
firstly, we must be able to add expanded columns in arbitrary order;
secondly, we need to actually make `ParExec` operate in parallel (which
make require making trace thread-safe or something).

The issue around the order in which expanded columns are added to the
trace is problematic as the current design essentially expects them to
be added in a specific order.  Instead, we need assignments and input
columns to know what their target column index is.  Then, we expanding
the trace, they can specify this.
@DavePearce DavePearce force-pushed the 260-support-parallel-trace-expansion branch from 16e947c to b9c2786 Compare July 29, 2024 05:41
@DavePearce DavePearce merged commit 2a96b89 into main Jul 29, 2024
2 checks passed
@DavePearce DavePearce deleted the 260-support-parallel-trace-expansion branch July 29, 2024 05:47
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.

Support Sequential ParExec
1 participant