Home
last modified time | relevance | path

Searched refs:clone_and_set (Results 1 – 4 of 4) sorted by relevance

/external/pytorch/torch/csrc/autograd/
Dvariable.cpp87 view_fn_->clone_and_set(), std::move(view_func)); in chain()
131 view_fn_->clone_and_set(), std::move(match_tensor_view_func)); in chain()
235 view_info.has_view_fn() ? view_info.view_fn().clone_and_set() : nullptr, in rebase_history()
881 std::unique_ptr<ViewFunc> ChainedViewFunc::clone_and_set( in clone_and_set() function in torch::autograd::ChainedViewFunc
905 first->clone_and_set(first_symints, first_tensors), in clone_and_set()
906 second->clone_and_set(second_symints, second_tensors)); in clone_and_set()
Dvariable.h353 virtual std::unique_ptr<ViewFunc> clone_and_set(
384 std::unique_ptr<ViewFunc> clone_and_set(
400 std::unique_ptr<ViewFunc> clone_and_set(
DVariableTypeUtils.h239 auto bw_view_func = view_func ? view_func->clone_and_set() : nullptr;
Dpython_variable.cpp606 out = (*view_func.clone_and_set(new_symints, new_tensors))(new_base); in view_func_impl()