isfinite[dtype: DType, width: Int, //](val: SIMD[dtype, width]) -> SIMD[DType.bool, width]
Checks if the value is not infinite.
This is always True for non-FP data types.
Parameters:
- dtype (
DType): The value dtype.
- width (
Int): The width of the SIMD vector.
Args:
- val (
SIMD): The value to check.
Returns:
SIMD: True if val is finite and False otherwise.