mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 12:41:26 +00:00
* 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.
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);
|
|
}
|