mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 18:17:44 +00:00
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.
[ROCm/composable_kernel commit: f18b79f328]
12 lines
182 B
C++
12 lines
182 B
C++
#include <gtest/gtest.h>
|
|
|
|
class ConvBuilderTest : public ::testing::Test
|
|
{
|
|
};
|
|
|
|
TEST_F(ConvBuilderTest, PlaceholderTest)
|
|
{
|
|
// TODO: Implement actual test
|
|
EXPECT_TRUE(true);
|
|
}
|