Makefile-flash-att 513 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
flash_att_commit := d478eeec8f16c7939c54e4617dbd36f59b8eeed7

install-flash-attention:
	# Install specific version of flash attention
	pip install packaging
	pip uninstall flash_attn rotary_emb dropout_layer_norm -y || true
	rm -rf flash-attention || true
	git clone https://github.com/HazyResearch/flash-attention.git
	cd flash-attention && git checkout $(flash_att_commit)
	cd flash-attention && python setup.py install && cd csrc/layer_norm && python setup.py install && cd ../rotary && python setup.py install