missing heder
This commit is contained in:
parent
23aaa8c792
commit
a165d3e4c2
41
packages/cuda/lista.h
Normal file
41
packages/cuda/lista.h
Normal file
@ -0,0 +1,41 @@
|
||||
#ifndef _LISTA_H_
|
||||
#define _LISTA_H_
|
||||
|
||||
typedef struct Node{
|
||||
int name;
|
||||
int *dev_address;
|
||||
int rows;
|
||||
int size;
|
||||
int iteration;
|
||||
int isrule;
|
||||
}memnode;
|
||||
|
||||
typedef struct auxiliar{
|
||||
int name;
|
||||
int num_rows;
|
||||
int num_columns;
|
||||
int *address_host_table;
|
||||
int *rule_names;
|
||||
int *referencias;
|
||||
int **select;
|
||||
int *numsel;
|
||||
int **project;
|
||||
int2 *projpos;
|
||||
int **selfjoin;
|
||||
int *numselfj;
|
||||
int **wherejoin;
|
||||
int *numjoin;
|
||||
int3 num_bpreds;
|
||||
int *builtin;
|
||||
int gen_act;
|
||||
int gen_ant;
|
||||
}rulenode;
|
||||
|
||||
typedef struct completed{
|
||||
int name;
|
||||
int numrules;
|
||||
int reduce;
|
||||
int reset;
|
||||
}compnode;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user