clarify when the default rounding mode for halfs can be rtz
The SPIR-V environment spec currently says:
https://registry.khronos.org/OpenCL/specs/3.0-unified/html/OpenCL_Env.html#_rounding_modes
For half precision operations, devices may support either Round to nearest even or Round toward zero as the default rounding mode for half precision operations.
It would be better to use a few more words here to describe when the default rounding mode can be round to nearest even and when it can be round toward zero. For example, the OpenCL C part of the cl_khr_fp16 extension says:
https://registry.khronos.org/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#cl_khr_fp16-rounding-modes
If CL_FP_ROUND_TO_NEAREST is supported, the default rounding mode for half-precision floating-point operations will be round to nearest even; otherwise the default rounding mode will be round to zero.