Replies: 1 comment 3 replies
-
|
Replicating a page on another GPU can be a somewhat complex process. Could you let me know how you imagine real hardware supporting this feature? Also, to what degree do you want to model this behavior? The starting point should be the mmu.go. https://github.com/sarchlab/akita/blob/v4/mem/vm/mmu/mmu.go. You may want to modify the page table https://github.com/sarchlab/akita/blob/v4/mem/vm/pagetable.go to be able to record multiple owning GPUs. Or you can let the page table to have multiple entries for one virtual address. Then, you can let the MMU respond to different GPUs with their own physical addresses. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a page already available on GPU1, and I want to replicate(not migrate) the same page on GPU2. Which files should I check for this? Any pointers would be really helpful. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions