simd.h 248 B

1234567891011
  1. #include <asm/fpu/api.h>
  2. /*
  3. * may_use_simd - whether it is allowable at this time to issue SIMD
  4. * instructions or access the SIMD register file
  5. */
  6. static __must_check inline bool may_use_simd(void)
  7. {
  8. return irq_fpu_usable();
  9. }