Skip to content

Commit 8edd047

Browse files
authored
[TOPI] Move ewise.h -> elemwise.h (#327)
* [TOPI] Move ewise.h -> elemwise.h * fix test
1 parent 760475f commit 8edd047

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

tests/cpp/topi_ewise_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <tvm/tvm.h>
2-
#include <topi/ewise.h>
2+
#include <topi/elemwise.h>
33
#include <gtest/gtest.h>
44

55
namespace topi {
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
22
* Copyright (c) 2017 by Contributors
3-
* \file ewise.h
3+
* \file elemwise.h
44
* \brief Elementwise op constructions
55
*/
6-
#ifndef TOPI_EWISE_H_
7-
#define TOPI_EWISE_H_
6+
#ifndef TOPI_ELEMWISE_H_
7+
#define TOPI_ELEMWISE_H_
88

99
#include <string>
1010

@@ -30,4 +30,4 @@ TOPI_DECLARE_UNARY_OP(sigmoid);
3030
TOPI_DECLARE_UNARY_OP(sqrt);
3131

3232
} // namespace topi
33-
#endif // TOPI_EWISE_H_
33+
#endif // TOPI_ELEMWISE_H_

0 commit comments

Comments
 (0)