Files
composable_kernel/experimental/builder/test/test_conv_builder.cpp
John Shumway f38c3de9f9 Fix copyright messages in experimental/builder. (#3253)
Our copyright were were mostly correct, but we inconsistently used (C) instead of (c) like the rest of the CK code. This PR fixes that (using lowercase c) and adds a missing copyright header to one file.
2025-11-20 17:40:55 -08:00

15 lines
281 B
C++

// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
// SPDX-License-Identifier: MIT
#include <gtest/gtest.h>
class ConvBuilderTest : public ::testing::Test
{
};
TEST_F(ConvBuilderTest, PlaceholderTest)
{
// TODO: Implement actual test
EXPECT_TRUE(true);
}