rrevo commited on
Commit
6cfa6ec
·
1 Parent(s): bc8d394

flash attn 1

Browse files
Files changed (1) hide show
  1. server/entrypoint.sh +1 -10
server/entrypoint.sh CHANGED
@@ -1,16 +1,7 @@
1
  #!/bin/bash
2
 
3
- ./.venv/bin/ninja --version
4
- echo $?
5
-
6
- cd $HOME/code
7
- ls -al
8
- ls .venv/ -al
9
- ls .venv/bin/ -al
10
- ls .venv/lib/python3.11/site-packages/ -al
11
-
12
  curl -sS https://bootstrap.pypa.io/get-pip.py | ./.venv/bin/python
13
- ./.venv/bin/python -m pip install flash_attn --no-build-isolation
14
 
15
  echo "Installation done"
16
 
 
1
  #!/bin/bash
2
 
 
 
 
 
 
 
 
 
 
3
  curl -sS https://bootstrap.pypa.io/get-pip.py | ./.venv/bin/python
4
+ ./.venv/bin/python -m pip install flash_attn==1.0.9 --no-build-isolation
5
 
6
  echo "Installation done"
7