Tal Ben-Nun
Tal Ben-Nun
Runtime negative indices in numpy arrays are not currently supported: https://spcldace.readthedocs.io/en/latest/frontend/parsing.html#main-limitations The main argument behind this is that adding runtime checks for every indexed expression will slow down the generated...
there is out-of-bounds checking in SDFG validation, but these for loops are only evaluated at runtime, so those are harder to check (not impossible, but we don't do so by...
@alexnick83 is this still WIP?
@TizianoDeMatteis `sdfg.constants` is a `@property` that wraps around `sdfg.constants_prop`. The latter is a dictionary mapping to a tuple of `(dtype, val)` just like the one iterated over in the exception...
Will be fixed by #545.
This was already partially (but not fully) fixed with the GPU_Default storage
Funnily enough, this is tied to our earliest open issue: #28 I think you can change the name of the SDFG though with `sdfg.name = '...'`
It's a Xilinx-specific issue, so it would be safest to raise an exception (ValueError) in the code generator. For example, here: https://github.com/spcl/dace/blob/master/dace/codegen/targets/xilinx.py#L541 Then the name should be there mentioning the...
@krishnakumarg1984 at first, we only had the function names, but exactly as @JamieJQuinn said, once we started compiling multiple modules the names started clashing very quickly. It's a necessity to...
@learning-chip Thanks for providing the reproducible notebook. It made everything easier 👍 First of all, what you were timing includes compilation and running time. This was fixed since the latest...