-
Notifications
You must be signed in to change notification settings - Fork 80
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
#11795: Implemented randomized FD tests to test the ring buffer #14014
Merged
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
sagarwalTT
force-pushed
the
sagarwal/ring_buffer_tests
branch
from
October 21, 2024 14:32
22193c3
to
9c4ecf3
Compare
sagarwalTT
force-pushed
the
sagarwal/ring_buffer_tests
branch
from
October 21, 2024 22:41
836ff58
to
5c67f3f
Compare
sagarwalTT
requested review from
abhullar-tt,
pgkeller,
aliuTT,
tt-aho,
tt-dma,
tt-asaigal and
ubcheema
as code owners
October 23, 2024 17:34
sagarwalTT
force-pushed
the
sagarwal/ring_buffer_tests
branch
from
October 28, 2024 14:25
307033c
to
838df0c
Compare
nemanjagrujic
pushed a commit
that referenced
this pull request
Oct 29, 2024
* #0: Initial changes * #0: Moved some code to test_utils.hpp * #0: More work on dispatcher test * #0: More work on test implementation * #0: Added support for runtime args * #0: Moved kernel * #0: Moved kernel * #0: Removed new test file from CMakeLists.txt * #0: Adding tests * #0: More work on tests * #0: Added more tests * #0: Saving work * #0: More work * #0: Cleanup * #0: Cleanup * #0: Cleanup * #0: More work * #0: Removed file * #0: Renamed tests * #0: Use HalProgrammableCoreType * #0: Fixed issue where no cores were being selected to dispatch to * #0: Modified printing to be after every 10 iterations * #0: Added CBs to the host * #0: Fixed issue where min num rtargs is sometimes larger than the max num of rtargs * #0: Finished implementing CBs * #0: Cleanup * #0: Implementing feedback * #0: Use core_coord.hpp * #0: Replaced TT_ASSERT with ASSERT * #0: Added missing call to Finish() * #0: Moved kernel parameters into struct * #0: Modified kernel storage location * #0: Prefixed with std::
ct-clmsn
pushed a commit
to ct-clmsn/tt-metal
that referenced
this pull request
Nov 12, 2024
…uffer (tenstorrent#14014) * #0: Initial changes * #0: Moved some code to test_utils.hpp * #0: More work on dispatcher test * #0: More work on test implementation * #0: Added support for runtime args * #0: Moved kernel * #0: Moved kernel * #0: Removed new test file from CMakeLists.txt * #0: Adding tests * #0: More work on tests * #0: Added more tests * #0: Saving work * #0: More work * #0: Cleanup * #0: Cleanup * #0: Cleanup * #0: More work * #0: Removed file * #0: Renamed tests * #0: Use HalProgrammableCoreType * #0: Fixed issue where no cores were being selected to dispatch to * #0: Modified printing to be after every 10 iterations * #0: Added CBs to the host * #0: Fixed issue where min num rtargs is sometimes larger than the max num of rtargs * #0: Finished implementing CBs * #0: Cleanup * #0: Implementing feedback * #0: Use core_coord.hpp * #0: Replaced TT_ASSERT with ASSERT * #0: Added missing call to Finish() * #0: Moved kernel parameters into struct * #0: Modified kernel storage location * #0: Prefixed with std::
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.
Problem description
#11795
I've added tests that creates programs with several random conditions and then dispatches them in order to see how the ring buffer handles them.
Checklist