15 lines
353 B
C++
15 lines
353 B
C++
![]() |
//===- UtilityTest.cpp - Tests for
|
||
|
// Utility----------------------------------===//
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "triton/Analysis/Utility.h"
|
||
|
#include <gmock/gmock.h>
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
namespace mlir {
|
||
|
|
||
|
TEST(UtilityTest, DummyTest) { EXPECT_EQ(true, true); }
|
||
|
|
||
|
} // namespace mlir
|