Zach Corse
Zach Corse
@sizhe-li , as of Warp 1.5, the following re-write should work: ```python import warp as wp wp.init() @wp.kernel def test(x: wp.array(dtype=float), y: wp.array(dtype=wp.vec3)): tid = wp.tid() a = wp.vec3() a.x...
Yes was going to stay I'm not sure if your tape setup will work or not. You have two tapes, which in theory is okay, but in the link you...
Updating this to an enhancement request. We should include benchmarks comparing frameworks in ci/cd.
Did you see these? https://nvidia.github.io/warp/modules/functions.html#warp.tile_load_indexed https://nvidia.github.io/warp/modules/functions.html#warp.tile_store_indexed https://nvidia.github.io/warp/modules/functions.html#warp.tile_atomic_add_indexed
@chaoming0625 I see what you're trying to do now. `wp.tile_load_indexed()` is meant for loading a tile from global memory, whereas you would like to be able to write `solve_effect[k_step_parent]`, which...
Changing this to a feature request.
Yes, you can expand the assignment and write to a new array. So for example, the above test could be re-written: ``` python import warp as wp wp.init() wp.build.clear_kernel_cache() @wp.kernel...