Skip to content

Commit f923432

Browse files
authored
Fix bug in metal isq (#706)
1 parent 8f0fa16 commit f923432

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • mistralrs-core/src/pipeline

mistralrs-core/src/pipeline/isq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ pub trait IsqModel {
191191
use indicatif::ProgressIterator;
192192
tensors
193193
.into_iter()
194-
.zip(devices)
194+
.zip(devices_and_dtypes)
195195
.progress_with(bar)
196196
.for_each(|((tensor, _), (device, dtype))| {
197197
*tensor = tensor

0 commit comments

Comments
 (0)