Skip to content

Commit 638e538

Browse files
Valerio Sofimorgoth95
authored andcommitted
fix: removed unnecessary param
1 parent 44634cf commit 638e538

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/ambv/black
3-
rev: 22.3.0
3+
rev: 22.10.0
44
hooks:
55
- id: black
66
types: [python]

server/clip_server/model/clip_nebullvm.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,12 @@ def optimize_models(
4949
self._visual_model = optimize_model(
5050
self._visual_path,
5151
input_data=[((torch.randn(1, 3, self.pixel_size, self.pixel_size),), 0)],
52-
ignore_compilers=["tvm"],
5352
**general_kwargs,
5453
)
5554

5655
self._textual_model = optimize_model(
5756
self._textual_path,
5857
input_data=[((torch.randint(0, 100, (1, 77)),), 0)],
59-
ignore_compilers=["tvm"],
6058
**general_kwargs,
6159
)
6260

0 commit comments

Comments
 (0)