13 lines
204 B
C
13 lines
204 B
C
|
//
|
||
|
// Author: Joshua Cohen
|
||
|
// Copyright 2016
|
||
|
//
|
||
|
|
||
|
#ifndef GPU_TOPO_H
|
||
|
#define GPU_TOPO_H
|
||
|
|
||
|
size_t getDeviceMem();
|
||
|
void runGPUTopo(long,long,double*,int*,float*,double*,double*,int,double*,double**);
|
||
|
|
||
|
#endif
|