Home
last modified time | relevance | path

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

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