“-fstrict-aliasing”表示启用严格别名规则,“-fno-strict-aliasing”表示禁用严格别名规则,当gcc的编译优化参数为“-O2”.“-O3”和“-Os”时,默认会打开“-fstrict-aliasing”. 什么是严格别名规则?gcc对严格别名的定义: In particular, an object of one type is assumed never to reside at the same address as an object of a diffe…
来自:http://deeplearning.net/software/theano/tutorial/aliasing.html Understanding Memory Aliasing for Speed and Correctness 内存的重用是theano提升代码运行速度的一种方法,而且理解theano如何别名(alias)缓冲区对编写的程序速度的提升和正确性的保证很重要. 这部分是基于theano处理内存的基础上来说明原则的,而且解释了为了获得更快的性能,在什么时候该改变某些函数默…