JuliaORNL / JACC.jl

CPU/GPU parallel performance portable layer in Julia via functions as arguments
MIT License
21 stars 13 forks source link

Add custom range for parallel_for iterations #79

Open williamfgc opened 6 months ago

williamfgc commented 6 months ago

Currently parallel_for(N, f, x...) iterates from 1:N Need UnitRange M:N for parallel_for(M:N, f, x...) for custom iteration from M to N (M < N)

williamfgc commented 6 months ago

From discussion with @pedrovalerolara : also explore how Julia's @view fits in the JACC API