From 8edd047b6e62fac70adb0b7d2562aafc6057f379 Mon Sep 17 00:00:00 2001 From: Tianqi Chen Date: Mon, 14 Aug 2017 20:00:30 -0700 Subject: [PATCH] [TOPI] Move ewise.h -> elemwise.h (#327) * [TOPI] Move ewise.h -> elemwise.h * fix test --- tests/cpp/topi_ewise_test.cc | 2 +- topi/include/topi/{ewise.h => elemwise.h} | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) rename topi/include/topi/{ewise.h => elemwise.h} (89%) 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_