Skip to content

Commit

Permalink
Split up layers.marlin into several files (#2292)
Browse files Browse the repository at this point in the history
The marlin.py file was getting large, split it up.
  • Loading branch information
danieldk authored Jul 24, 2024
1 parent 8642250 commit 93d2b9f
Show file tree
Hide file tree
Showing 7 changed files with 917 additions and 837 deletions.
5 changes: 4 additions & 1 deletion server/tests/utils/test_weights.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
)
from text_generation_server.layers.gptq import GPTQWeight, GPTQWeightsLoader
from text_generation_server.layers.exl2 import Exl2Weight, Exl2WeightsLoader
from text_generation_server.layers.marlin import MarlinWeight, MarlinWeightsLoader
from text_generation_server.layers.marlin.marlin import (
MarlinWeight,
MarlinWeightsLoader,
)
from types import SimpleNamespace
from typing import List, Optional, Dict, Union
from pathlib import Path
Expand Down
Loading

0 comments on commit 93d2b9f

Please sign in to comment.