Where can I find the implementation of the declaration from `model.h`?

The torch::Module is

22 /// The base class for all modules in PyTorch.

I found its declaration in include/torch/csrc/api/include/torch/nn/module.h, where can I find its definition/implementation?

Check the corresponding .cpp file here.