The source project of this merge request has been removed.
Ipx iris fix warnings
A few warnings pop up when building with the intel compiler using openmp on iris.
- First is related to the OPENMP
#pragma for
changing the loop iterator value to be anunsigned int
type automatically (?? couldn't find any docs for this), which causes type warnings when usingvtkm::Id
- Second is related to the intel compiler float cast being picky and needing individual casting to prevent precision loss warnings.
Edited by Nickolas Davis