Skip to content

Commit ed48093

Browse files
authored
bug fix
1 parent a5dc8b5 commit ed48093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _get_n_current_jobs(self):
7676
return total_sequences
7777

7878
def _get_quantization(self):
79-
quantization = os.getenv("QUANTIZATION").lower()
79+
quantization = os.getenv("QUANTIZATION", "").lower()
8080
return quantization if quantization in ["awq", "squeezellm", "gptq"] else None
8181

8282
def concurrency_modifier(self, current_concurrency):

0 commit comments

Comments
 (0)