Home
last modified time | relevance | path

Searched refs:data_impl (Results 1 – 3 of 3) sorted by relevance

/external/pytorch/torch/csrc/autograd/
Dvariable.h816 at::TensorImpl* data_impl = data.unsafeGetTensorImpl();
817 data_impl->set_allow_tensor_metadata_change(allow_tensor_metadata_change);
818 data_impl->set_autograd_meta(std::make_unique<DifferentiableViewMeta>(
819 data_impl,
863 auto data_impl = data.unsafeReleaseIntrusivePtr();
864 data_impl->set_allow_tensor_metadata_change(allow_tensor_metadata_change);
866 data_impl->set_autograd_meta(
867 std::make_unique<AutogradMeta>(data_impl.get(), requires_grad));
869 data_impl->set_autograd_meta(nullptr);
871 return Variable(std::move(data_impl));
/external/rust/android-crates-io/crates/protobuf/src/reflect/repeated/
Dmod.rs70 fn data_impl<V: ProtobufValue, X: ProtobufValue>(v: &Vec<V>) -> &[X] { in data_impl() function
135 data_impl(self) in data_bool()
139 data_impl(self) in data_i32()
143 data_impl(self) in data_u32()
147 data_impl(self) in data_i64()
151 data_impl(self) in data_u64()
155 data_impl(self) in data_f32()
159 data_impl(self) in data_f64()
/external/pytorch/c10/core/
DTensorImpl.h1609 return data_impl<const void>( in data()
1624 return data_impl<void>( in mutable_data()
1634 Void* data_impl(const Func& get_data) const { in data_impl() function