mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary:
This reverts commit d167a7f654.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/37468
Differential Revision: D21305110
Pulled By: anjali411
fbshipit-source-id: d1bdc9d9feac00331fc2b2b905d49f80bef680f9
5 lines
176 B
C++
5 lines
176 B
C++
#include <gtest/gtest.h>
|
|
#define C10_DEFINE_TEST(a, b) TEST(a, b)
|
|
#define C10_ASSERT_NEAR(a, b, tol) ASSERT_NEAR(a, b, tol)
|
|
#include <c10/test/util/complex_math_test_common.h>
|