Skip to content

Commit aaf04d4

Browse files
author
Robert Shaw
committed
remove separate bias add
1 parent 7ed6a4f commit aaf04d4

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

vllm/model_executor/layers/linear.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,7 @@ def apply(self,
9999

100100

101101
class UnquantizedLinearMethod(LinearMethodBase):
102-
"""Linear method without quantization.
103-
104-
Args:
105-
separate_bias_add: If true, add bias separately after matrix
106-
multiplication.
107-
"""
108-
109-
def __init__(self, separate_bias_add: bool = False):
110-
self.separate_bias_add = separate_bias_add
102+
"""Linear method without quantization."""
111103

112104
def create_weights(self, layer: torch.nn.Module,
113105
input_size_per_partition: int,

0 commit comments

Comments
 (0)