Commit 68107e5e authored by YdrMaster's avatar YdrMaster
Browse files

issue/314/fix: typo xmake.lua


Signed-off-by: default avatarYdrMaster <ydrml@hotmail.com>
parent e8d427f3
...@@ -22,7 +22,7 @@ end ...@@ -22,7 +22,7 @@ end
option("cpu") option("cpu")
set_default(true) set_default(true)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for CPU") set_description("Whether to compile implementations for CPU")
option_end() option_end()
option("omp") option("omp")
...@@ -44,7 +44,7 @@ end ...@@ -44,7 +44,7 @@ end
option("nv-gpu") option("nv-gpu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for Nvidia GPU") set_description("Whether to compile implementations for Nvidia GPU")
option_end() option_end()
if has_config("nv-gpu") then if has_config("nv-gpu") then
...@@ -55,7 +55,7 @@ end ...@@ -55,7 +55,7 @@ end
option("cudnn") option("cudnn")
set_default(true) set_default(true)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie cudnn for Nvidia GPU") set_description("Whether to compile cudnn for Nvidia GPU")
option_end() option_end()
if has_config("cudnn") then if has_config("cudnn") then
...@@ -66,7 +66,7 @@ end ...@@ -66,7 +66,7 @@ end
option("cambricon-mlu") option("cambricon-mlu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for Cambricon MLU") set_description("Whether to compile implementations for Cambricon MLU")
option_end() option_end()
if has_config("cambricon-mlu") then if has_config("cambricon-mlu") then
...@@ -78,7 +78,7 @@ end ...@@ -78,7 +78,7 @@ end
option("ascend-npu") option("ascend-npu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for Huawei Ascend NPU") set_description("Whether to compile implementations for Huawei Ascend NPU")
option_end() option_end()
if has_config("ascend-npu") then if has_config("ascend-npu") then
...@@ -90,7 +90,7 @@ end ...@@ -90,7 +90,7 @@ end
option("iluvatar-gpu") option("iluvatar-gpu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for Iluvatar GPU") set_description("Whether to compile implementations for Iluvatar GPU")
option_end() option_end()
if has_config("iluvatar-gpu") then if has_config("iluvatar-gpu") then
...@@ -103,7 +103,7 @@ end ...@@ -103,7 +103,7 @@ end
option("metax-gpu") option("metax-gpu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for MetaX GPU") set_description("Whether to compile implementations for MetaX GPU")
option_end() option_end()
if has_config("metax-gpu") then if has_config("metax-gpu") then
...@@ -115,7 +115,7 @@ end ...@@ -115,7 +115,7 @@ end
option("moore-gpu") option("moore-gpu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for Moore Threads GPU") set_description("Whether to compile implementations for Moore Threads GPU")
option_end() option_end()
if has_config("moore-gpu") then if has_config("moore-gpu") then
...@@ -127,7 +127,7 @@ end ...@@ -127,7 +127,7 @@ end
option("sugon-dcu") option("sugon-dcu")
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Whether to complie implementations for Sugon DCU") set_description("Whether to compile implementations for Sugon DCU")
option_end() option_end()
if has_config("sugon-dcu") then if has_config("sugon-dcu") then
...@@ -151,7 +151,7 @@ option("ccl") ...@@ -151,7 +151,7 @@ option("ccl")
set_default(false) set_default(false)
set_default(false) set_default(false)
set_showmenu(true) set_showmenu(true)
set_description("Wether to complie implementations for InfiniCCL") set_description("Wether to compile implementations for InfiniCCL")
option_end() option_end()
if has_config("ccl") then if has_config("ccl") then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment