Files
composable_kernel/experimental/builder/test/test_conv_builder.cpp
John Shumway 0be0288f58 [CK_BUILDER] Update copyright messages. (#3150)
* Update copyright messages.

Copyright messages should no longer include a year. This PR updates all 38 source files to the new format.

* Switch to (C) from unicode copyright symbol.

The unicodein comments  was causing compilation errors.
2025-11-04 15:35:16 +01: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);
}