Home
last modified time | relevance | path

Searched refs:ConstModuleApplyFunction (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/api/include/torch/nn/
H A Dmodule.h67 using ConstModuleApplyFunction = std::function<void(const Module&)>; variable
143 void apply(const ConstModuleApplyFunction& function) const;
/aosp_15_r20/external/pytorch/torch/csrc/api/src/nn/
H A Dmodule.cpp87 void Module::apply(const ConstModuleApplyFunction& function) const { in apply()