-
Notifications
You must be signed in to change notification settings - Fork 725
Open
Milestone
Description
This issue collects tasks that block porting lfilter.cpp to use torch stable ABI.
- implement
mutable_data_ptr<T>()
andconst_data_ptr<T>()
in torch/csrc/stable/tensor_struct.h. For instance, this simplifies porting of expressions liketensor.data_ptr<scalar_t>()
. Currently, one needs to rewrite this asreinterpret_cast<scalar_t*>(tensor.data_ptr())
wheretensor
is atorch::stable::Tensor
.
Fix available: [STABLE ABI] Add mutable_data_ptr() and const_data_ptr() methods to torch::stable::Tensor. pytorch#161891 - can we use
at::parallel_for
in torch stable ABI code? - implement
unsqueeze
as astable/ops.h
operation - implement
select
as astable/ops.h
operation - implement
at::matmul
as astable/ops.h
operation - implement
index_put_
astorch::stable::Tensor
method or astable/ops.h
operation. Can we usetorch::indexing::Slice()
in torch stable ABI code?
janeyx99
Metadata
Metadata
Assignees
Labels
No labels