Skip to content

Commit

Permalink
[TOPI] Move ewise.h -> elemwise.h (#327)
Browse files Browse the repository at this point in the history
* [TOPI] Move ewise.h -> elemwise.h

* fix test
  • Loading branch information
tqchen authored Aug 15, 2017
1 parent 760475f commit 8edd047
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/cpp/topi_ewise_test.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <tvm/tvm.h>
#include <topi/ewise.h>
#include <topi/elemwise.h>
#include <gtest/gtest.h>

namespace topi {
Expand Down
8 changes: 4 additions & 4 deletions topi/include/topi/ewise.h → topi/include/topi/elemwise.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*!
* Copyright (c) 2017 by Contributors
* \file ewise.h
* \file elemwise.h
* \brief Elementwise op constructions
*/
#ifndef TOPI_EWISE_H_
#define TOPI_EWISE_H_
#ifndef TOPI_ELEMWISE_H_
#define TOPI_ELEMWISE_H_

#include <string>

Expand All @@ -30,4 +30,4 @@ TOPI_DECLARE_UNARY_OP(sigmoid);
TOPI_DECLARE_UNARY_OP(sqrt);

} // namespace topi
#endif // TOPI_EWISE_H_
#endif // TOPI_ELEMWISE_H_

0 comments on commit 8edd047

Please sign in to comment.