docs(capter7):update host constant variables in kernal function

This commit is contained in:
unknown 2021-12-05 21:58:49 +08:00
parent 1557fe90a5
commit 95b43ee3f3
1 changed files with 3 additions and 0 deletions

View File

@ -53,4 +53,7 @@
对于核函数中全局内存的写入,则没有类似函数可用。所以若不能满足读取和写入都是合并的, 对于核函数中全局内存的写入,则没有类似函数可用。所以若不能满足读取和写入都是合并的,
一般应该尽量做到合并写入。 一般应该尽量做到合并写入。
核函数中可以直接使用在函数外部由 `#define``const` 定义的常量,包括整型和浮点型常量。
但是在windows平台下MSVC编译器核函数无法使用外部定义的 `const` 定义的浮点型常量。
------ ------