/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-02 05:08:22 UTC
  • Revision ID: csa@dside.dyndns.org-20091202050822-n6ouznm1zp2n2i5l
Instead of transfer compute local sums and denormals on board

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
    
 
11
    
 
12
int local_sum_validate(TProcessingState *ps, int icp, const mxArray *lsum, const mxArray *denom);
 
13
 
 
14
#endif /* LOCAL_SUM_H */