vc/tests/linkTest0.cpp

12 lines
195 B
C++
Raw Permalink Normal View History

2023-01-30 20:31:00 +08:00
#include <Vc/Vc>
#include <Vc/IO>
#include <Vc/support.h>
using namespace Vc;
float_v foo0(float_v::AsArg a)
{
const float_v b = sin(a + float_v::One());
std::cerr << b;
return b;
}