#include #include extern spe_program_handle_t hello_spu; int main(void) { spe_context_ptr_t speid; unsigned int entry = SPE_DEFAULT_ENTRY; spe_stop_info_t stop_info; speid = spe_context_create(0, NULL); spe_program_load(speid, &hello_spu); spe_context_run(speid, &entry, 0, NULL, NULL, &stop_info); spe_context_destroy(speid); return 0; }