File: dummy.cpp

package info (click to toggle)
xsimd 13.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,716 kB
  • sloc: cpp: 36,557; sh: 541; makefile: 184; python: 117
file content (7 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
#include <xsimd/xsimd.hpp>

// Basic check: can we instantiate a batch for the given compiler flags?
xsimd::batch<int> come_and_get_some(xsimd::batch<int> x, xsimd::batch<int> y)
{
    return x + y;
}