From 132ac32167eb43d1b0a48fe6326dc91d53f285c3 Mon Sep 17 00:00:00 2001 From: Cody Hao Yu Date: Fri, 13 Dec 2019 19:33:07 +0000 Subject: [PATCH] fix lint --- include/tvm/relay/expr.h | 2 +- src/relay/backend/contrib/codegen_c/codegen_c.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/tvm/relay/expr.h b/include/tvm/relay/expr.h index ee6db9342bb7..b60b37adbd38 100644 --- a/include/tvm/relay/expr.h +++ b/include/tvm/relay/expr.h @@ -270,7 +270,7 @@ class FunctionNode : public ExprNode { /*! * \brief Check whether the function is an external function. - * External functions are subgraphes that supported by external libraries. + * External functions are supported by external libraries. * * \return Whether the function is external or not. */ diff --git a/src/relay/backend/contrib/codegen_c/codegen_c.h b/src/relay/backend/contrib/codegen_c/codegen_c.h index bf37f6a9e457..882846aa00db 100644 --- a/src/relay/backend/contrib/codegen_c/codegen_c.h +++ b/src/relay/backend/contrib/codegen_c/codegen_c.h @@ -21,8 +21,8 @@ * \file src/relay/backend/contrib/codegen_c/codegen_c.h * \brief The base class for external codegen tools. */ -#ifndef TVM_RELAY_BACKEND_CONTRIB_CODEGEN_C_H_ -#define TVM_RELAY_BACKEND_CONTRIB_CODEGEN_C_H_ +#ifndef TVM_RELAY_BACKEND_CONTRIB_CODEGEN_C_CODEGEN_C_H_ +#define TVM_RELAY_BACKEND_CONTRIB_CODEGEN_C_CODEGEN_C_H_ #include #include @@ -276,4 +276,4 @@ class CodgenCBase { } // namespace contrib } // namespace relay } // namespace tvm -#endif // TVM_RELAY_BACKEND_CONTRIB_CODEGEN_C_H_ +#endif // TVM_RELAY_BACKEND_CONTRIB_CODEGEN_C_CODEGEN_C_H_