Sign in
android
/
platform
/
external
/
pytorch
/
fcdd394f66
/
.
/
SparseTensorRef.h
blob: f0381d51c28c7e9b3c3b9e101b782df6e20c23e5 [
file
] [
log
] [
blame
]
#pragma
once
namespace
at
{
struct
Tensor
;
struct
SparseTensor
{
explicit
SparseTensor
(
const
Tensor
&
t
):
tref
(
t
)
{}
const
Tensor
&
tref
;
};
}