...
/Steps to Reach the C++ Source Code for nn.PixelShuffle
Steps to Reach the C++ Source Code for nn.PixelShuffle
We'll cover the following...
C++ implementation of nn.PixelShuffle
Here are the steps to reach the C++ source code for implementation of nn.PixelShuffle
:
Double-click the name, "PixelShuffle", and press "F12". It leads us to this line in
site-packages/torch/nn/modules/__init__.py
:
from .pixelshuffle import PixelShuffle
Importing PixelShuffle module
...