From 8e705b2cdeace4943b535e24f4b6f35f8aab3dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Pietil=C3=A4?= Date: Fri, 3 Oct 2025 13:44:14 +0000 Subject: [PATCH] Add instructions for building the builder example. --- experimental/builder/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/experimental/builder/README.md b/experimental/builder/README.md index b68cd1399b..b881d37fa1 100644 --- a/experimental/builder/README.md +++ b/experimental/builder/README.md @@ -70,3 +70,17 @@ Currently, the entrypoint to the CK builder is the test suite that can be built ```bash make -j test_conv_builder ``` + +There's also a CK example application that demonstrates creartion of the kernel instance via the build. +The example code can be built using CMake as follows + +```bash +make -j builder_example_conv_fwd_2d +``` + +Note that if option `-D MIOPEN_REQ_LIBS_ONLY=ON` was specified for building the tests, the CMake configure step +must re-executed with option + +```cmake +-D MIOPEN_REQ_LIBS_ONLY=OFF +```