vllm.model_executor.layers.quantization.compressed_tensors.transform.linear ¶
CompressedTensorsLinearTransformMethod ¶
Bases: LinearMethodBase
Wraps CompressedTensorsLinearMethod
or UnquantizedLinearMethod
and adds input and output transforms to either side of the original apply method
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
__init__ ¶
__init__(
quant_method: LinearMethodBase,
input_tfms: dict[int, TransformTuple],
output_tfms: dict[int, TransformTuple],
)
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
_validate_tfm_schemes ¶
_validate_tfm_schemes(num_partitions: int)
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
apply ¶
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
create_weights ¶
create_weights(
layer: Module,
input_size_per_partition: int,
output_partition_sizes: list[int],
input_size: int,
output_size: int,
params_dtype: dtype,
**extra_weight_attrs,
)
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
from_schemes classmethod
¶
from_schemes(
quant_method: LinearMethodBase,
quant_scheme: CompressedTensorsScheme | None,
input_tfms: dict[int, TransformTuple],
output_tfms: dict[int, TransformTuple],
) -> CompressedTensorsLinearTransformMethod
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
process_weights_after_loading ¶
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
get_layer_partition_names ¶
get_layer_partition_names(
layer_name: str,
packed_modules_mapping: dict[str, list[str]],
) -> list[str]
Get all partition names associated with this layer. Names are returned in order of their partition indices.
```python mapping = {"gate_up_proj", "gate_proj", "up_proj"}
assert get_layer_partition_names("mlp.gate_up_proj", mapping) == [ "gate_proj", "up_proj", ] assert get_layer_partition_names("mlp.down_proj", mapping) == ["down_proj"]
Source code in vllm/model_executor/layers/quantization/compressed_tensors/transform/linear.py
get_linear_transform_schemes ¶
get_linear_transform_schemes(
layer: Module,
layer_name: str,
transform_config: TransformConfig | None,
packed_modules_mapping: dict[str, list[str]],
) -> tuple[
dict[int, TransformTuple], dict[int, TransformTuple]
]