| 1255 | } |
| 1256 | |
| 1257 | PyTensor PyTensor::gather(int dim, const PyTensor& indices) const { |
| 1258 | return PyTensor(tensor_.gather(dim, indices.tensor_)); |
| 1259 | } |
| 1260 | |
| 1261 | PyTensor PyTensor::masked_select(const PyTensor& mask) const { |
| 1262 | return PyTensor(tensor_.masked_select(mask.tensor_)); |