Skip to content

Commit

Permalink
fix ci (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
helloyongyang authored Nov 19, 2024
1 parent a6c95fc commit ddca991
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion ci_check/change_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,16 @@ def main():
elif file_path == "../llmc/compression/quantization/awq.py":
modifications = {
"header": ["n_grid_zbl = 1\n"],
"modifications": [("n_grid = 20", "n_grid = n_grid_zbl")],
"modifications": [
(
"n_grid = 20",
"n_grid = n_grid_zbl"
),
(
"device='cuda'",
"device='cpu'"
)
],
}
elif file_path == "../llmc/compression/quantization/gptq.py":
modifications = {
Expand Down

0 comments on commit ddca991

Please sign in to comment.