-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Ensure dependencies are traversed in scriptModuleLoader
#2987
Open
nvmkuruc
wants to merge
1
commit into
PixarAnimationStudios:dev
Choose a base branch
from
nvmkuruc:scriptmoduleloader
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nvmkuruc
force-pushed
the
scriptmoduleloader
branch
from
March 5, 2024 12:05
b8a9889
to
689cda0
Compare
Filed as internal issue #USD-9388 |
/AzurePipelines run |
Azure Pipelines successfully started running 1 pipeline(s). |
nvmkuruc
force-pushed
the
scriptmoduleloader
branch
from
March 11, 2024 12:59
689cda0
to
3ecf65c
Compare
/AzurePipelines run |
Azure Pipelines successfully started running 1 pipeline(s). |
nvmkuruc
force-pushed
the
scriptmoduleloader
branch
from
March 28, 2024 15:39
3ecf65c
to
00a9db5
Compare
/AzurePipelines run |
Azure Pipelines successfully started running 1 pipeline(s). |
nvmkuruc
force-pushed
the
scriptmoduleloader
branch
from
April 1, 2024 14:49
00a9db5
to
2144dd0
Compare
/AzurePipelines run |
Azure Pipelines successfully started running 1 pipeline(s). |
nvmkuruc
force-pushed
the
scriptmoduleloader
branch
from
June 4, 2024 20:04
2144dd0
to
19c5651
Compare
nvmkuruc
force-pushed
the
scriptmoduleloader
branch
from
October 25, 2024 13:08
19c5651
to
c7501a6
Compare
/AzurePipelines run |
Azure Pipelines successfully started running 1 pipeline(s). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Change(s)
_HasTransitiveSuccessor
iterates over a predecessor's successors with an unused variablej
and then attempts to tag the predecessor to be visited when it should be tagging the successors.This change replaces the
TF_FOR_ALL
with a range based for loop and changes the logic so that successors are now added to the predecessor stack.This also ensures that the initial state of the visit tracking
TfHashSet
matches the initial state of the stack, avoiding unnecessary re-visitation of the initial predecessor.Fixes Issue(s)