Add flash attention kernel skeleton

This commit is contained in:
Hansung Kim
2024-08-14 20:46:09 -07:00
parent 014f7cd06f
commit 692d028afd
6 changed files with 4514 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
PROJECT = flash_attention
SRCS = main.cpp common.h
VX_SRCS = kernel.cpp
VX_INCLUDES = ../sgemm_tcore/sgemm_impl.hpp
OPTS ?= -n16
VX_CFLAGS += -I../sgemm_tcore
include ../common.mk