我有C代碼,它使用指向struct
的指針。我試圖找出如何將它傳遞給cuda而沒有太多的運氣。將基於指針的結構傳遞給cuda
我
typedef struct node { /* describes a tip species or an ancestor */
struct node *next, *back; /* pointers to nodes */
etc...
} node;
然後
typedef node **pointptr;
static pointptr treenode;
在我的代碼我經歷了所有這些迭代,而我試圖找出如何將它們傳遞給內核,所以我可以執行以下操作:
for (i = 1; i <= nonodes; i++) {
treenode[i - 1]->back = NULL;
etc....
}
但我想不出如何通過它。 任何想法?