mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-21 15:47:38 +00:00
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.
15 lines
281 B
C++
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);
|
|
}
|