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

Dma capable of broadcasting #408

Open
davideschiavone opened this issue Oct 17, 2023 · 0 comments · May be fixed by #425
Open

Dma capable of broadcasting #408

davideschiavone opened this issue Oct 17, 2023 · 0 comments · May be fixed by #425
Labels
enhancement New feature or request

Comments

@davideschiavone
Copy link
Member

The DMA currently can implement to modes:

  1. normal mode

for(... i<N ....)
dst[i] = src[i]

  1. address mode

for(... i<N ....)
dst[i] = src[ addr[i] ]

We want to add a broadcast mode

  1. broadcast mode

for(... i<N ....)
dst_1[i] = src[i]
dst_2[i] = src[i]

the user should be able to select which are the destinations via some sort of MASKING. Destinations and source can be either SLOTS or MEMORIES

@grinningmosfet

@davideschiavone davideschiavone added the enhancement New feature or request label Oct 17, 2023
@grinningmosfet grinningmosfet linked a pull request Nov 1, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant