Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Inductor] [Doc] Add tutorial for Max-autotune Support on CPU as a prototype feature for PyTorch 2.5 #3063

Merged
merged 22 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
66800eb
add max-autotune tutorial
chunyuan-w Sep 26, 2024
1d57543
Rename the tutorial
chunyuan-w Sep 27, 2024
243c58e
add RFC link and mention that code is subject to change
chunyuan-w Sep 27, 2024
9380b9d
fix link
chunyuan-w Sep 27, 2024
29effc5
add request on frozen and no_grad
chunyuan-w Sep 27, 2024
b8639c1
add description on perf boost
chunyuan-w Sep 27, 2024
806ee21
change from further to additional in the title
chunyuan-w Sep 27, 2024
dce78f3
Add more details for freezing
chunyuan-w Sep 28, 2024
7540b9a
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
fb8f415
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
4323a70
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
e480573
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
f9b4159
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
a43f7b9
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
5aa9e84
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
c320d58
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
f1fae2e
Update prototype_source/max_autotune_on_CPU_tutorial.rst
chunyuan-w Oct 2, 2024
94e3e06
Merge branch 'main' into chunyuan/max-autotune-pr
chunyuan-w Oct 2, 2024
50285ed
Merge branch 'main' into chunyuan/max-autotune-pr
chunyuan-w Oct 9, 2024
2f90eae
Formatting fixes.
svekars Oct 9, 2024
7b4792c
Merge branch 'main' into chunyuan/max-autotune-pr
svekars Oct 9, 2024
ad0c00c
Update prototype_source/max_autotune_on_CPU_tutorial.rst
svekars Oct 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
215 changes: 215 additions & 0 deletions prototype_source/max_autotune_on_CPU_tutorial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
Using Max-Autotune Compilation on CPU for Better Performance
================================================================================

**Author**: `Jiong Gong <https://github.com/jgong5>`__, `Leslie Fang <https://github.com/leslie-fang-intel>`__, `Chunyuan Wu <https://github.com/chunyuan-w>`__

chunyuan-w marked this conversation as resolved.
Show resolved Hide resolved
In this tutorial, you will learn how to boost your PyTorch models' performance on CPU by
svekars marked this conversation as resolved.
Show resolved Hide resolved
leveraging the max-autotune mode in the Inductor CPU backend. Explore the activation
process, understand the differences from traditional methods, and integrate max-autotune
into your code for enhanced computational efficiency. Dive into the use of advanced
GEMM templates for faster processing and superior runtime performance.

Prerequisites:
----------------
- `torch.compile and TorchInductor concepts in PyTorch <https://pytorch.org/tutorials/intermediate/torch_compile_tutorial.html>`__

Introduction
------------
The ``max-autotune`` mode for the Inductor CPU backend in ``torch.compile`` (`RFC link <https://github.com/pytorch/pytorch/issues/125683>`_)
profiles multiple implementations of operations at compile time and selects the best-performing one,
trading longer compilation times for improved runtime performance. This enhancement is particularly beneficial for GEMM-related operations.
In the Inductor CPU backend, we’ve introduced a C++ template-based GEMM implementation as an alternative to the ATen-based approach that relies on oneDNN and MKL libraries.
This is similar to the max-autotune mode on CUDA, where implementations from ATen, Triton, and CUTLASS are considered.

We have covered most popular data types, including FP32, BF16, FP16, and INT8, with epilogue fusions for x86 CPUs.

While the development is still in progress, we have already seen promising speedups over pure ATen-based GEMMs as measured by the three benchmark suites and the inference of LLMs.

Activating the ``max-autotune`` mode
-------------------------------------
To activate the ``max-autotune`` mode in PyTorch, set the ``mode`` argument to ``max-autotune`` when compiling your model using ``torch.compile``.
If you prefer to bypass the tuning process and always use the C++ template implementations, you can configure this via an environment variable:
``export TORCHINDUCTOR_MAX_AUTOTUNE_GEMM_BACKENDS=CPP``.


Example
------------
The below code is an example of using the ``max-autotune`` mode on a simple neural network with a linear layer followed by a ReLU activation.

In the C++ template-based GEMM implementation, we will pre-pack the weight for good cache usage.
In the case of inference which is the primary scenario of CPU AI workloads,
model weights are constant and we pack them upfront during compilation
so that the data accesses are contiguous within the cache blocks.
Thus, We only support frozen model with ``torch.no_grad`` or the inference mode.
You need to set the environment variable ``export TORCHINDUCTOR_FREEZING=1``
and ensure that both the compilation and inference steps are executed within the ``torch.no_grad`` context.

.. code:: python

import torch
from torch._inductor import config
config.trace.log_autotuning_results = True # enable the log of autotuning results

class M(torch.nn.Module):
def __init__(
self,
in_features,
out_features,
bias,
**kwargs,
):
super().__init__()
self.linear = torch.nn.Linear(
in_features,
out_features,
bias,
**kwargs,
)
self.relu = torch.nn.ReLU()

def forward(self, x):
x = self.linear(x)
x = self.relu(x)
return x

amp_enabled = True
batch_size = 64
in_features = 16
out_features = 32
bias = True

x = torch.randn(batch_size, in_features)
model = M(in_features, out_features, bias)

with torch.no_grad(), torch.cpu.amp.autocast(enabled=amp_enabled):
compiled = torch.compile(model, mode="max-autotune") # turn on "max-autotune" mode
y = compiled(x)


When running the above code snippet, you will see the autotuning result (the performance numbers are for demonstration purposes).
In this example, C++ template outperforms ATen kernel so that it will be selected.

.. code:: shell

AUTOTUNE linear_unary(64x16, 32x16, 32)
cpp_packed_gemm_0 0.2142 ms 100.0%
_linear_pointwise 0.2441 ms 87.7%


We could check the generated output code by setting ``export TORCH_LOGS="+output_code"``.
When C++ template is selected, we won't have ``torch.ops.mkldnn._linear_pointwise.default`` (for bfloat16) or ``torch.ops.mkl._mkl_linear.default`` (for float32)
in the generated code anymore, instead, we'll find kernel based on CPP GEMM template ``cpp_fused__to_copy_relu_1``
(only part of the code is demonstrated below for simplicity) with the bias and relu epilogues fused inside the C++ GEMM template kernel.

The generated code differs by CPU architecture and is implementation-specific, which is subject to change.

.. code:: python

cpp_fused__to_copy_relu_1 = async_compile.cpp_pybinding(['const bfloat16*', 'const bfloat16*', 'const bfloat16*', 'bfloat16*'], '''

...

template <bool accum>
inline void kernel_micro_gemm_amx_kernel_32_2(
AMXState& amx_state,
const bfloat16* __restrict__ A,
const bfloat16* __restrict__ B,
float* __restrict__ C,
int64_t K,
int64_t lda,
int64_t ldb,
int64_t ldc,
uint8_t tilecfg_rows
) {
...
}

...

template <bool accum>
inline void kernel_micro_gemm(
AMXState& amx_state,
const bfloat16* __restrict__ A,
const bfloat16* __restrict__ B,
float* __restrict__ C,
int64_t M,
int64_t N,
int64_t K,
int64_t lda,
int64_t ldb,
int64_t ldc
) {
...
}

extern "C"
void kernel(const bfloat16* X, const bfloat16* W, const bfloat16* inp, bfloat16* Y)
{
constexpr int64_t num_threads = 40;
constexpr int64_t N = 32;
constexpr int64_t K = 16;
constexpr int64_t M = static_cast<int64_t>(64L);
...
#pragma omp parallel num_threads(40)
{
const int tid = omp_get_thread_num();
...
for (int64_t mc_block_id = 0; mc_block_id < num_Mc_blocks_per_thread; mc_block_id++) {
...
for (int64_t nc = n_block_start; nc < n_block_end; nc += Nc_blocks) {
...
for (int64_t kc = k_block_start; kc < k_block_end; kc += Kc_blocks) {
...
for (int64_t nci = nc; nci < nc_block_end; nci++) {
if (kc == k_block_start) {
kernel_micro_gemm<static_cast<bool>(false)>(
...
);

} else {
kernel_micro_gemm<static_cast<bool>(true)>(
...
);

}
}
}
{
{
// Epilogue fusion here for bias and relu
#pragma GCC ivdep
for(int64_t x0=static_cast<int64_t>(0L); x0<static_cast<int64_t>(m_end + ((-1L)*m_start)); x0+=static_cast<int64_t>(1L))
{
for(int64_t x1=static_cast<int64_t>(0L); x1<static_cast<int64_t>(16L*(c10::div_floor_integer(static_cast<int64_t>((n_end + ((-1L)*n_start))), static_cast<int64_t>(16L)))); x1+=static_cast<int64_t>(16L))
{
auto tmp0 = at::vec::Vectorized<bfloat16>::loadu(inp + static_cast<int64_t>(n_start + x1), static_cast<int64_t>(16));
auto tmp2 = at::vec::Vectorized<float>::loadu(local_acc_buf + static_cast<int64_t>(x1 + (Nc_blocks*Nr*x0)), static_cast<int64_t>(16));
auto tmp1 = at::vec::convert<float>(tmp0);
auto tmp3 = tmp1 + tmp2;
auto tmp4 = at::vec::convert<bfloat16>(tmp3);
auto tmp5 = static_cast<float>(0.0);
auto tmp6 = at::vec::Vectorized<float>(tmp5);
auto tmp7 = at::vec::maximum(tmp3, tmp6);
auto tmp8 = at::vec::convert<bfloat16>(tmp7);
tmp8.store(Y + static_cast<int64_t>(n_start + x1 + (32L*m_start) + (32L*x0)), static_cast<int64_t>(16));
}

...

}
}

}
}
}
...
}
}
''')

Conclusion
------------
In this tutorial, we introduced max-autotune support on CPU with GEMM template. We explained the API to activate this feature, and demonstrated
the generated code of the GEMM template.

This feature is in prototype stage. If you have any feature requests or run into any issues, please file a bug report at `GitHub issues <https://github.com/pytorch/pytorch/issues>`_.
8 changes: 8 additions & 0 deletions prototype_source/prototype_index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,13 @@ Prototype features are not available as part of binary distributions like PyPI o
:link: ../prototype/inductor_windows_cpu.html
:tags: Model-Optimization

.. customcarditem::
:header: Use max-autotune compilation on CPU to gain additional performance boost
:card_description: Tutorial for max-autotune mode on CPU to gain additional performance boost
:image: ../_static/img/thumbnails/cropped/generic-pytorch-logo.png
:link: ../prototype/max_autotune_on_CPU_tutorial.html
:tags: Model-Optimization

.. Distributed
.. customcarditem::
:header: Flight Recorder Tutorial
Expand Down Expand Up @@ -273,3 +280,4 @@ Prototype features are not available as part of binary distributions like PyPI o
prototype/maskedtensor_sparsity.html
prototype/maskedtensor_advanced_semantics.html
prototype/maskedtensor_adagrad.html
prototype/max_autotune_CPU_with_gemm_template_tutorial.html
Loading