-
|
I got the following error while running I can see that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Currently a limitation - we dedicate 28 bits to the buffer length register in hardware. We may look into changing this in the future; for know, the recommended approach is to partition transfers over 128MB from software. This should have no overhead, as cThread->invoke is asynchronous, so it's possible to fire multiple invoke calls one after another, so: |
Beta Was this translation helpful? Give feedback.
Currently a limitation - we dedicate 28 bits to the buffer length register in hardware. We may look into changing this in the future; for know, the recommended approach is to partition transfers over 128MB from software. This should have no overhead, as cThread->invoke is asynchronous, so it's possible to fire multiple invoke calls one after another, so:
cThread->invoke(buffer)
cThread->invoke(buffer + 128MB offset)
etc.