Files
vortex/runtime/include/vx_spawn.h
Blaise Tine bc75147921 minor update
2020-06-27 15:34:59 -04:00

19 lines
268 B
C

#ifndef VX_API_H
#define VX_API_H
#include <stdint.h>
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void (*func_t)(void *);
void vx_spawn_warps(int num_warps, int num_threads, func_t func_ptr , void * args);
#ifdef __cplusplus
}
#endif
#endif