summaryrefslogtreecommitdiffstats
path: root/example.cc
blob: e8cf6485dc882906c84c1c0a4ef166864118458a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// -*-C++-*-

#include "vecmathlib.h"

#include <iostream>

using namespace std;



int main(int argc, char** argv)
{
  using namespace vecmathlib;
  typedef realvec<float,1> realvec_t;
  // typedef realvec<double,4> realvec_t;
  typedef realvec_t::boolvec_t boolvec_t;
  typedef realvec_t::intvec_t intvec_t;
  
  realvec_t x = 1.0;
  realvec_t y = x + realvec_t(1.0);
  y = sqrt(y);
  realvec_t z = log(y);
  boolvec_t b = x < y;
  intvec_t i = convert_int(y);
  
  cout << "x=" << x << "\n";
  cout << "y=" << y << "\n";
  cout << "z=" << z << "\n";
  cout << "b=" << b << "\n";
  cout << "i=" << i << "\n";
  
  return 0;
}
OpenPOWER on IntegriCloud