NNVM代码阅读
Posted Key_Ky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NNVM代码阅读相关的知识,希望对你有一定的参考价值。
op.h
#define DMLC_ATTRIBUTE_UNUSED __attribute__((unused))
__attribute__((unused)):通常,如果声明了某个变量,但从未对其进行引用,编译器将发出警告。此属性指示编译器您预计不会使用某个变量,并指示它在未使用该变量时不要发出警告。
void Variable_Attributes_unused_0() { static int aStatic =0; int aUnused __attribute__ ((unused)); int bUnused; aStatic++; }
--
以上是关于NNVM代码阅读的主要内容,如果未能解决你的问题,请参考以下文章