Commit 17e573c0 authored by Paul's avatar Paul
Browse files

Formatting

parent ea3872f7
...@@ -100,4 +100,8 @@ TEST_CASE(float_aligned) ...@@ -100,4 +100,8 @@ TEST_CASE(float_aligned)
EXPECT(p.get_parameter_shape("memory").bytes() == (1 * 4 + 2 * 4 + 200 * 4)); EXPECT(p.get_parameter_shape("memory").bytes() == (1 * 4 + 2 * 4 + 200 * 4));
} }
int main(int argc, const char* argv[]) { setenv("MIGRAPH_DISABLE_MEMORY_COLORING", "1", 1); test::run(argc, argv); } int main(int argc, const char* argv[])
{
setenv("MIGRAPH_DISABLE_MEMORY_COLORING", "1", 1);
test::run(argc, argv);
}
...@@ -244,7 +244,7 @@ inline void run(int argc, const char* argv[]) ...@@ -244,7 +244,7 @@ inline void run(int argc, const char* argv[])
// NOLINTNEXTLINE // NOLINTNEXTLINE
#define TEST_CAT(x, ...) TEST_PRIMITIVE_CAT(x, __VA_ARGS__) #define TEST_CAT(x, ...) TEST_PRIMITIVE_CAT(x, __VA_ARGS__)
#define TEST_PRIMITIVE_CAT(x, ...) x ## __VA_ARGS__ #define TEST_PRIMITIVE_CAT(x, ...) x##__VA_ARGS__
// NOLINTNEXTLINE // NOLINTNEXTLINE
#define TEST_CASE_REGISTER(...) \ #define TEST_CASE_REGISTER(...) \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment