mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-22 22:01:17 +00:00
10 lines
214 B
C
10 lines
214 B
C
|
|
#ifndef __FAKE_PMSIS_H__
|
||
|
|
#define __FAKE_PMSIS_H__
|
||
|
|
|
||
|
|
// simply include the runtime equivalent of pmsis.h: pulp.h
|
||
|
|
#include "pulp.h"
|
||
|
|
#define pi_core_id get_core_id
|
||
|
|
#define pi_cl_team_barrier(x) synch_barrier()
|
||
|
|
|
||
|
|
#endif
|