fork download
  1. #include <iostream>
  2. #include <numeric>
  3.  
  4. #define GENERATE(s) __attribute__((target(s),optimize("Ofast"))) \
  5. void f(float * __restrict a, const float * __restrict b, float c, int n) { \
  6. std::cout << #s << std::endl; \
  7. for (int i = 0; i < n; i++) \
  8. a[i] += c * b[i]; \
  9. }
  10.  
  11. GENERATE("fma")
  12. GENERATE("avx2")
  13. GENERATE("avx")
  14. GENERATE("sse4.2")
  15. GENERATE("default")
  16.  
  17.  
  18. int main() {
  19. float a[100], b[100], c;
  20. f(a, b, c, 100);
  21. std::cout << std::accumulate(a, a+100, 0.0f) << std::endl;
  22. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
"avx"
1.4013e-44