Update MemoryPlanning Verifier to only assume model has user input if it has at least one tensor input #10617
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.
Fixes #10522
Summary
MemoryPlanning verifier currently blows up if all the user inputs are prims. #10522 suggested:
This PR implements this suggestion, with accompanying unit tests.
_do_user_inputs_exist
now returns True if it has at least one tensor input, and False otherwise.Test plan
Added unit tests to
test_memory_planning.py
and ran them withPlease note you must comment out the line 69 from
/pytest.ini
for this to work:On my machine, I also had to comment out line 60 from
test_memory_planning.py
for the test to run without errors.[The tests I wrote aren't dependent on this library.]