We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 760475f commit 8edd047Copy full SHA for 8edd047
2 files changed
tests/cpp/topi_ewise_test.cc
@@ -1,5 +1,5 @@
1
#include <tvm/tvm.h>
2
-#include <topi/ewise.h>
+#include <topi/elemwise.h>
3
#include <gtest/gtest.h>
4
5
namespace topi {
topi/include/topi/ewise.h topi/include/topi/elemwise.htopi/include/topi/ewise.h renamed to topi/include/topi/elemwise.h
@@ -1,10 +1,10 @@
/*!
* Copyright (c) 2017 by Contributors
- * \file ewise.h
+ * \file elemwise.h
* \brief Elementwise op constructions
*/
6
-#ifndef TOPI_EWISE_H_
7
-#define TOPI_EWISE_H_
+#ifndef TOPI_ELEMWISE_H_
+#define TOPI_ELEMWISE_H_
8
9
#include <string>
10
@@ -30,4 +30,4 @@ TOPI_DECLARE_UNARY_OP(sigmoid);
30
TOPI_DECLARE_UNARY_OP(sqrt);
31
32
} // namespace topi
33
-#endif // TOPI_EWISE_H_
+#endif // TOPI_ELEMWISE_H_
0 commit comments