You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
433 B

25 years ago
  1. // Floating point format specifiers.
  2. #ifndef _CL_FLOATFORMAT_H
  3. #define _CL_FLOATFORMAT_H
  4. #include "cl_types.h"
  5. // Float format specifier type. (Float mantissa precision in bits.)
  6. typedef enum cl_float_format_t {
  7. cl_float_format_sfloat = 17,
  8. cl_float_format_ffloat = 24,
  9. cl_float_format_dfloat = 53,
  10. cl_float_format_lfloat_min = ((53+intDsize-1)/intDsize)*intDsize // = round_up(53,intDsize)
  11. };
  12. #endif /* _CL_FLOATFORMAT_H */