/normxcorr/trunk

To get this branch, use:
bzr branch http://suren.me/webbzr/normxcorr/trunk

« back to all changes in this revision

Viewing changes to cuda/local_sum.h

  • Committer: Suren A. Chilingaryan
  • Date: 2009-12-12 01:38:41 UTC
  • Revision ID: csa@dside.dyndns.org-20091212013841-feih3qa4i28x75j4
Provide stand-alone library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef LOCAL_SUM_H
2
 
#define LOCAL_SUM_H
3
 
 
4
 
#include "normxcorr_hw.h"
5
 
 
6
 
int local_sum(TProcessingState *ps, 
7
 
    float *lsum, float *denom,
8
 
    float *tmp1, float *tmp2,
9
 
    float *in1, float *in2,
10
 
    cudaStream_t stream);
11
 
    
12
 
    
13
 
int local_sum_validate(TProcessingState *ps, int icp, const mxArray *lsum, const mxArray *denom);
14
 
 
15
 
#endif /* LOCAL_SUM_H */