missing headers

This commit is contained in:
Vítor Santos Costa
2013-10-09 13:33:10 +01:00
parent f6bc5ab918
commit ffd9bb7a19
2 changed files with 42 additions and 0 deletions

16
packages/cuda/pred.h Normal file
View File

@@ -0,0 +1,16 @@
#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;
int Cuda_Eval(predicate**, int, predicate**, int, predicate*, int**);
#endif