mirror of
https://github.com/fauxpilot/fauxpilot.git
synced 2025-08-14 10:37:43 -07:00
Merge pull request #137 from leemgs/upstream-python-backend-cc-type
fix: Disable INT8 as a default CC type in Python-backend to support CC 6.0+
This commit is contained in:
commit
6c1b7fb404
1 changed files with 2 additions and 2 deletions
4
setup.sh
4
setup.sh
|
@ -154,8 +154,8 @@ function python_backend(){
|
|||
fi
|
||||
|
||||
# use int8? Allows larger models to fit in GPU but might be very marginally slower
|
||||
read -rp "Do you want to use int8? y/n [y]: " USE_INT8
|
||||
if [[ ${USE_INT8:-y} =~ ^[Nn]$ ]]; then
|
||||
read -rp "Do you want to use int8? y/n [n]: " USE_INT8
|
||||
if [[ ! $USE_INT8 =~ ^[Yy]$ ]]; then
|
||||
USE_INT8="0"
|
||||
else
|
||||
USE_INT8="1"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue