What would it take to make `hcubature` GPU-friendly? In the sense that there is no scalar indexing. Is that even possible? MWE: ``` using HCubature, CUDA CUDA.allowscalar(false) hcubature(x -> sum(abs2, x), CuArray(fill(-3, 3)), CuArray(fill(3, 3))) # ERROR: Scalar indexing is disallowed. ```
What would it take to make
hcubatureGPU-friendly? In the sense that there is no scalar indexing. Is that even possible?MWE: