[CK_BUILDER] Add experimental builder directory and configuration for composable_kernel (#3043)

Add experimental builder infrastructure for composable_kernel

- Add experimental/builder directory with README documentation.
- Create initial test infrastructure with CMakeLists.txt and placeholder test.
- Update root CMakeLists.txt to support CK_EXPERIMENTAL_BUILDER option.
- Update .gitignore to not treat `experimental/builder` as a CMake build directory.

This establishes the directory structure  for a high-level builder pattern that will provide a semantically-clear interface for constructing CK operations, with initial focus on convolution kernels for MIOpen integration.
This commit is contained in:
John Shumway
2025-10-20 07:54:09 -07:00
committed by GitHub
parent fb1d090f3c
commit f18b79f328
8 changed files with 81 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#include <gtest/gtest.h>
class ConvBuilderTest : public ::testing::Test
{
};
TEST_F(ConvBuilderTest, PlaceholderTest)
{
// TODO: Implement actual test
EXPECT_TRUE(true);
}