Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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_