(&self)
| 718 | |
| 719 | impl Clone for TensorData { |
| 720 | fn clone(&self) -> Self { |
| 721 | Self { |
| 722 | bytes: self.bytes.clone(), |
| 723 | dtype: self.dtype, |
| 724 | shape: self.shape.clone(), |
| 725 | } |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | fn make_mock_storage(prefix: &str, num_experts: usize, i: usize, h: usize) -> MockStorage { |
no outgoing calls