-
Notifications
You must be signed in to change notification settings - Fork 98
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
Slice improvements #17615
base: main
Are you sure you want to change the base?
Slice improvements #17615
Conversation
@@ -35,7 +38,12 @@ void kernel_main() { | |||
for (uint32_t i = 0; i < num_read_per_barrier and sticks_read < num_sticks_per_core; ++i) { | |||
sticks_read++; | |||
uint64_t src_noc_addr = get_noc_addr(src_stick_id, s0); | |||
noc_async_read(src_noc_addr, src_buffer_l1_addr, unpadded_stick_size); | |||
noc_async_read(src_noc_addr, src_buffer_l1_addr, read_size); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like that we are using this common memmove
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do as well
LGTM , I'll let @sjameelTT sign off on this from TMs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is amazing, great work!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for (very quickly) fixing up all the remaining issues
Ticket
#17351
#16966
Problem description
A few bugs/missing features/bad practices in slice:
What's changed
Sweep tests at 100% pass. Results:
slice_forge_sweeps.csv
slice_rm_pytorch_sweep.csv
slice_tiled_pytorch2_sweep.csv
Checklist