diff options
author | justheuristic <justheuristic@gmail.com> | 2022-09-18 01:09:24 +0300 |
---|---|---|
committer | justheuristic <justheuristic@gmail.com> | 2022-09-18 01:09:24 +0300 |
commit | 5d658171017473b54825dfeac21718f4e4be4eca (patch) | |
tree | 713911c2465b202500df596c5632de2b68865a7d /bitsandbytes/nn | |
parent | 4da2227fcbc3803d680dff113403aecac1827bc3 (diff) |
debug
Diffstat (limited to 'bitsandbytes/nn')
-rw-r--r-- | bitsandbytes/nn/modules.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bitsandbytes/nn/modules.py b/bitsandbytes/nn/modules.py index e7e759d..9250fec 100644 --- a/bitsandbytes/nn/modules.py +++ b/bitsandbytes/nn/modules.py @@ -237,7 +237,9 @@ class Linear8bitLt(nn.Linear): if threshold > 0.0 and not has_fp16_weights: self.state.use_pool = True - self.weight = Int8Params(self.weight.data, has_fp16_weights=has_fp16_weights) + self.weight = Int8Params( + self.weight.data, has_fp16_weights=has_fp16_weights, requires_grad=has_fp16_weights + ) def init_8bit_state(self): self.state.CB = self.weight.CB |