This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/cuda/pred.h
Vítor Santos Costa d02842c9ff missing file
2013-10-09 14:59:57 +01:00

24 lines
391 B
C

#ifndef _PRED_H_
#define _PRED_H_
typedef struct Nodo{
int name;
int num_rows;
int num_columns;
int is_fact;
int *address_host_table;
}gpunode;
typedef gpunode predicate;
#define SBG_EQ (-1)
#define SBG_GT (-2)
#define SBG_LT (-3)
#define SBG_GE (-4)
#define SBG_LE (-5)
#define SBG_DF (-6)
int Cuda_Eval(predicate**, int, predicate**, int, predicate*, int**);
#endif