diff --git a/tests/cpp/topi_ewise_test.cc b/tests/cpp/topi_ewise_test.cc index ca61d7b0bbbe..dc280aa7937a 100644 --- a/tests/cpp/topi_ewise_test.cc +++ b/tests/cpp/topi_ewise_test.cc @@ -1,5 +1,5 @@ #include -#include +#include #include namespace topi { diff --git a/topi/include/topi/ewise.h b/topi/include/topi/elemwise.h similarity index 89% rename from topi/include/topi/ewise.h rename to topi/include/topi/elemwise.h index 39a0f02bac71..e133833a790b 100644 --- a/topi/include/topi/ewise.h +++ b/topi/include/topi/elemwise.h @@ -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 @@ -30,4 +30,4 @@ TOPI_DECLARE_UNARY_OP(sigmoid); TOPI_DECLARE_UNARY_OP(sqrt); } // namespace topi -#endif // TOPI_EWISE_H_ +#endif // TOPI_ELEMWISE_H_