|
@@ -8,41 +8,92 @@ package("suitesparse")
|
|
add_versions("v5.10.1", "acb4d1045f48a237e70294b950153e48dce5b5f9ca8190e86c2b8c54ce00a7ee")
|
|
add_versions("v5.10.1", "acb4d1045f48a237e70294b950153e48dce5b5f9ca8190e86c2b8c54ce00a7ee")
|
|
add_versions("v5.12.0", "5fb0064a3398111976f30c5908a8c0b40df44c6dd8f0cc4bfa7b9e45d8c647de")
|
|
add_versions("v5.12.0", "5fb0064a3398111976f30c5908a8c0b40df44c6dd8f0cc4bfa7b9e45d8c647de")
|
|
add_versions("v5.13.0", "59c6ca2959623f0c69226cf9afb9a018d12a37fab3a8869db5f6d7f83b6b147d")
|
|
add_versions("v5.13.0", "59c6ca2959623f0c69226cf9afb9a018d12a37fab3a8869db5f6d7f83b6b147d")
|
|
|
|
+ add_versions("v7.5.1", "dccfb5f75aa83fe2edb4eb2462fc984a086c82bad8433f63c31048d84b565d74")
|
|
|
|
|
|
add_patches("5.x", path.join(os.scriptdir(), "patches", "5.10.1", "msvc.patch"), "8ac61e9acfaa864a2528a14d3a7e6e86f6e6877de2fe93fdc87876737af5bf31")
|
|
add_patches("5.x", path.join(os.scriptdir(), "patches", "5.10.1", "msvc.patch"), "8ac61e9acfaa864a2528a14d3a7e6e86f6e6877de2fe93fdc87876737af5bf31")
|
|
|
|
|
|
|
|
+ add_configs("openmp", {description = "Enable OpenMP support.", default = true, type = "boolean"})
|
|
add_configs("cuda", {description = "Enable CUDA support.", default = false, type = "boolean"})
|
|
add_configs("cuda", {description = "Enable CUDA support.", default = false, type = "boolean"})
|
|
- add_configs("blas", {description = "Set BLAS vendor.", default = "openblas", type = "string", values = {"mkl", "openblas"}})
|
|
|
|
- add_configs("graphblas", {description = "Enable GraphBLAS module.", default = false, type = "boolean"})
|
|
|
|
|
|
+ add_configs("blas", {description = "Set BLAS vendor.", default = "openblas", type = "string", values = {"mkl", "openblas", "apple"}})
|
|
|
|
+ add_configs("blas_static", {description = "Use static BLAS library.", default = true, type = "boolean"})
|
|
|
|
+ add_configs("graphblas", {description = "Enable static GraphBLAS module.", default = false, type = "boolean"})
|
|
|
|
|
|
add_deps("metis")
|
|
add_deps("metis")
|
|
|
|
+ if not is_plat("windows") then
|
|
|
|
+ add_deps("gmp", "mpfr")
|
|
|
|
+ end
|
|
if is_plat("linux") then
|
|
if is_plat("linux") then
|
|
add_syslinks("m", "rt")
|
|
add_syslinks("m", "rt")
|
|
end
|
|
end
|
|
on_load("windows", "macosx", "linux", function (package)
|
|
on_load("windows", "macosx", "linux", function (package)
|
|
|
|
+ if package:version():ge("7.4.0") then
|
|
|
|
+ package:add("deps", "cmake")
|
|
|
|
+ end
|
|
|
|
+ if package:config("openmp") then
|
|
|
|
+ package:add("deps", "openmp")
|
|
|
|
+ end
|
|
if package:config("cuda") then
|
|
if package:config("cuda") then
|
|
package:add("deps", "cuda", {system = true, configs = {utils = {"cublas"}}})
|
|
package:add("deps", "cuda", {system = true, configs = {utils = {"cublas"}}})
|
|
package:add("links", "GPUQREngine")
|
|
package:add("links", "GPUQREngine")
|
|
package:add("links", "SuiteSparse_GPURuntime")
|
|
package:add("links", "SuiteSparse_GPURuntime")
|
|
end
|
|
end
|
|
- if package:config("graphblas") then
|
|
|
|
- package:add("links", "GraphBLAS")
|
|
|
|
|
|
+ if package:config("blas") == "apple" then
|
|
|
|
+ package:add("frameworks", "Accelerate")
|
|
|
|
+ else
|
|
|
|
+ package:add("deps", package:config("blas"))
|
|
end
|
|
end
|
|
- package:add("deps", package:config("blas"))
|
|
|
|
- for _, lib in ipairs({"SPQR", "UMFPACK", "LDL", "KLU", "CXSparse", "CHOLMOD", "COLAMD", "CCOLAMD", "CAMD", "BTF", "AMD", "suitesparseconfig"}) do
|
|
|
|
- package:add("links", lib)
|
|
|
|
|
|
+ if package:version():ge("7.4.0") then
|
|
|
|
+ local suffix = ""
|
|
|
|
+ if package:is_plat("windows") and not package:config("shared") then
|
|
|
|
+ suffix = "_static"
|
|
|
|
+ end
|
|
|
|
+ for _, lib in ipairs({"lagraphx", "lagraph", "graphblas", "spex", "spqr", "rbio", "ParU", "umfpack", "ldl", "klu", "klu_cholmod", "cxsparse", "cholmod", "colamd", "ccolamd", "camd", "btf", "amd", "suitesparse_mongoose", "suitesparseconfig"}) do
|
|
|
|
+ package:add("links", lib .. suffix)
|
|
|
|
+ end
|
|
|
|
+ else
|
|
|
|
+ for _, lib in ipairs({"SPQR", "UMFPACK", "LDL", "KLU", "CXSparse", "CHOLMOD", "COLAMD", "CCOLAMD", "CAMD", "BTF", "AMD", "suitesparseconfig"}) do
|
|
|
|
+ package:add("links", lib)
|
|
|
|
+ end
|
|
end
|
|
end
|
|
end)
|
|
end)
|
|
|
|
|
|
- on_install("windows", "macosx", "linux", function (package)
|
|
|
|
- os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua")
|
|
|
|
- local configs = {}
|
|
|
|
- configs.with_blas = package:config("blas")
|
|
|
|
- configs.with_cuda = package:config("cuda")
|
|
|
|
- configs.graphblas = package:config("graphblas")
|
|
|
|
- import("package.tools.xmake").install(package, configs)
|
|
|
|
|
|
+ on_install("windows|x64", "macosx", "linux", function (package)
|
|
|
|
+ if package:version():ge("7.4.0") then
|
|
|
|
+ local configs = {"-DSUITESPARSE_DEMOS=OFF"}
|
|
|
|
+ table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
|
|
|
+ table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
|
|
|
+ table.insert(configs, "-DBUILD_STATIC_LIBS=" .. (package:config("shared") and "OFF" or "ON"))
|
|
|
|
+ table.insert(configs, "-DGRAPHBLAS_BUILD_STATIC_LIBS=" .. (package:config("graphblas") and "ON" or "OFF"))
|
|
|
|
+ table.insert(configs, "-DSUITESPARSE_USE_OPENMP=" .. (package:config("openmp") and "ON" or "OFF"))
|
|
|
|
+ table.insert(configs, "-DSUITESPARSE_USE_CUDA=" .. (package:config("cuda") and "ON" or "OFF"))
|
|
|
|
+ local bla_vendor = {mkl = "Intel10_64lp", openblas = "OpenBLAS", apple = "Apple"}
|
|
|
|
+ table.insert(configs, "-DBLA_VENDOR=" .. bla_vendor[package:config("blas")])
|
|
|
|
+ table.insert(configs, "-DBLA_STATIC=" .. (package:config("blas_static") and "ON" or "OFF"))
|
|
|
|
+ if package:is_plat("windows") then
|
|
|
|
+ table.insert(configs, "-DSUITESPARSE_ENABLE_PROJECTS=suitesparse_config;mongoose;amd;btf;camd;ccolamd;colamd;cholmod;cxsparse;ldl;klu;umfpack;paru;rbio;spqr;graphblas;lagraph") -- remove spex since it does not support windows
|
|
|
|
+ local vs_sdkver = import("core.tool.toolchain").load("msvc"):config("vs_sdkver")
|
|
|
|
+ if vs_sdkver then
|
|
|
|
+ local build_ver = string.match(vs_sdkver, "%d+%.%d+%.(%d+)%.?%d*")
|
|
|
|
+ assert(tonumber(build_ver) >= 18362, "cpuinfo requires Windows SDK to be at least 10.0.18362.0")
|
|
|
|
+ table.insert(configs, "-DCMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION=" .. vs_sdkver)
|
|
|
|
+ table.insert(configs, "-DCMAKE_SYSTEM_VERSION=" .. vs_sdkver)
|
|
|
|
+ end
|
|
|
|
+ end
|
|
|
|
+ import("package.tools.cmake").install(package, configs)
|
|
|
|
+ else
|
|
|
|
+ os.cp(path.join(package:scriptdir(), "port", "xmake.lua"), "xmake.lua")
|
|
|
|
+ local configs = {}
|
|
|
|
+ configs.with_blas = package:config("blas")
|
|
|
|
+ configs.with_cuda = package:config("cuda")
|
|
|
|
+ configs.graphblas = package:config("graphblas")
|
|
|
|
+ import("package.tools.xmake").install(package, configs)
|
|
|
|
+ end
|
|
end)
|
|
end)
|
|
|
|
|
|
on_test(function (package)
|
|
on_test(function (package)
|
|
- assert(package:has_cfuncs("SuiteSparse_start", {includes = "SuiteSparse_config.h"}))
|
|
|
|
|
|
+ if package:version():ge("7.4.0") then
|
|
|
|
+ assert(package:has_cfuncs("SuiteSparse_start", {includes = "suitesparse/SuiteSparse_config.h"}))
|
|
|
|
+ else
|
|
|
|
+ assert(package:has_cfuncs("SuiteSparse_start", {includes = "SuiteSparse_config.h"}))
|
|
|
|
+ end
|
|
end)
|
|
end)
|