Add idle kernel

Only spawns 1 thread that does a busy wait up to a counter.  Other cores
do not issue any instructions after the scheduling prologue.
This commit is contained in:
Hansung Kim
2024-06-20 14:00:32 -07:00
parent 63418a7496
commit 11e6d34e1c
4 changed files with 339 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
PROJECT = sgemm_gemmini_dma
SRCS = main.cpp common.h
VX_SRCS = kernel.cpp
OPTS ?= -n16
include ../common.mk