cuda-0.1: examples/src/scan/scan.h
/* -----------------------------------------------------------------------------
*
* Module : Scan
* Copyright : (c) 2009 Trevor L. McDonell
* License : BSD
*
* ---------------------------------------------------------------------------*/
#ifndef __SCAN_H__
#define __SCAN_H__
#ifdef __cplusplus
extern "C" {
#endif
/*
* Instances
*/
void scanl_plusf(float *in, float *out, int N);
void scanl1_plusf(float *in, float *out, int N);
#ifdef __cplusplus
}
#endif
#endif