void hfunc1(float* in, float* out, unsigned n){
  unsigned i;
  for(i=0; i<n; ++i){
    out[i]=2*in[i];
  }
}
