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 ffd9bb7a19 missing headers
2013-10-09 13:33:10 +01:00

17 lines
264 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;
int Cuda_Eval(predicate**, int, predicate**, int, predicate*, int**);
#endif