aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--zh/README.md8
2 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 7e806945..528193fd 100644
--- a/README.md
+++ b/README.md
@@ -423,16 +423,16 @@ $ xmake
```
```lua
--- add helper function add_cugencode
-includes('add_cugencode.lua')
+-- add helper function add_cugencodes
+includes('add_cugencodes.lua')
-- define target
target("cuda_console")
set_kind("binary")
add_files("src/*.cu")
-- generate SASS code for SM architecture of current host
- add_cugencode("native")
+ add_cugencodes("native")
-- generate PTX code for the virtual architecture to guarantee compatibility
- add_cugencode("compute_30")
+ add_cugencodes("compute_30")
```
xmake will detect Cuda SDK automatically and we can also set the SDK directory manually.
diff --git a/zh/README.md b/zh/README.md
index db25f4bb..8bdddeb2 100644
--- a/zh/README.md
+++ b/zh/README.md
@@ -453,16 +453,16 @@ $ xmake
```
```lua
--- add helper function add_cugencode
-includes('add_cugencode.lua')
+-- add helper function add_cugencodes
+includes('add_cugencodes.lua')
-- define target
target("cuda_console")
set_kind("binary")
add_files("src/*.cu")
-- generate SASS code for SM architecture of current host
- add_cugencode("native")
+ add_cugencodes("native")
-- generate PTX code for the virtual architecture to guarantee compatibility
- add_cugencode("compute_30")
+ add_cugencodes("compute_30")
```