Makefile-flash-att 685 Bytes
Newer Older
1
flash_att_commit := 3a9bfd076f98746c73362328958dbc68d145fbec
2

3
4
5
6
7
8
9
build-flash-attention:
	if [ ! -d 'flash-attention' ]; then \
		pip install -U packaging ninja  --no-cache-dir && \
		git clone https://github.com/HazyResearch/flash-attention.git && \
		cd flash-attention && git fetch && git checkout $(flash_att_commit) && \
		MAX_JOBS=8 python setup.py build && cd csrc/layer_norm && python setup.py build && cd ../rotary && python setup.py build; \
	fi
10
11

install-flash-attention: build-flash-attention
12
13
14
	if [ ! -d 'flash-attention' ]; then \
		cd flash-attntion && python setup.py install && cd csrc/layer_norm && python setup.py install && cd ../rotary && python setup.py install; \
	fi