forked from openkylin/vc
12 lines
195 B
C++
12 lines
195 B
C++
|
#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;
|
||
|
}
|