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.

преди 6 години
преди 6 години
преди 6 години
преди 6 години
преди 6 години
123456789101112131415
  1. #pragma once
  2. extern "C" {
  3. /**
  4. * Gets the square root of num four times and writes it to @res
  5. *
  6. * @param num: the number of which the square root shall be taken
  7. * @param res: where the 4 results shall be written
  8. */
  9. void _AVX(float num, void* res);
  10. /**
  11. * Just a wrapper around RDRAND
  12. */
  13. uint32_t _RDRAND(void);
  14. }