Mohsen

Results 4 comments of Mohsen

> Do we have a test for this function? I added a test where we can check min/max of random variables before and after changing the boundaries. `test/random/TestInverseTransformSamplingUpdateBounds.cpp` I use...

@matt-frey The current way of computing min/max of cdf for a bounded domain uses layout to find the bounds on each rank. `const typename RegionLayout::host_mirror_type regions = rlayout_r.gethLocalRegions();` ``` umin_m[d]...

@matt-frey @srikrrish We essentially need bounds (min/max) of sub-domain (called local regions) corresponding to each rank. So, we can have another constructor that takes in rmin/rmax (bounds of the whole...

@srikrrish I added another constructor for inverse transform sampling that takes local bounds for each rank, instead of rlayout. Please let me know if you have any comments.