Skip to content

Commit

Permalink
chore: disable test of cpu index_select for quantized tensors
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarflakstad committed Aug 23, 2024
1 parent eb206a6 commit 4cda652
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/ratchet-core/src/ops/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,9 @@ def index_select(input, indices):
let device = Device::request_device(DeviceRequest::GPU).unwrap();
run_index_select_trial(prob.clone(), device, true);

let device = Device::request_device(DeviceRequest::CPU).unwrap();
run_index_select_trial(prob, device, true);
// TODO: impl CPU index_select for quantized tensors
// let device = Device::request_device(DeviceRequest::CPU).unwrap();
// run_index_select_trial(prob, device, true);
}

#[derive(Debug, Clone)]
Expand Down

0 comments on commit 4cda652

Please sign in to comment.