|
|
|
package("xtensor-blas")
|
|
|
|
|
|
|
|
set_kind("library", {headeronly = true})
|
|
|
|
set_homepage("https://github.com/xtensor-stack/xtensor-blas/")
|
|
|
|
set_description("BLAS extension to xtensor")
|
|
|
|
set_license("BSD-3-Clause")
|
|
|
|
|
|
|
|
add_urls("https://github.com/xtensor-stack/xtensor-blas/archive/refs/tags/$(version).tar.gz",
|
|
|
|
"https://github.com/xtensor-stack/xtensor-blas.git")
|
|
|
|
add_versions("0.21.0", "89ce6eceb47018f3b557945468502593e0bf0e5a816548aad8ac22247c8198b1")
|
|
|
|
add_versions("0.19.1", "c77cc4e2297ebd22d0d1c6e8d0a6cf0975176afa8cb99dbfd5fb2be625a0248f")
|
|
|
|
add_versions("0.20.0", "272f5d99bb7511a616bfe41b13a000e63de46420f0b32a25fa4fb935b462c7ff")
|
|
|
|
|
|
|
|
add_configs("vendor", {description = "Set BLAS vendor.", default = "openblas", type = "string", values = {"mkl", "openblas"}})
|
|
|
|
|
|
|
|
add_deps("cmake")
|
|
|
|
add_deps("xtensor")
|
|
|
|
on_load("windows", "linux", function (package)
|
|
|
|
package:add("deps", package:config("vendor"))
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_install("windows", "linux", function (package)
|
|
|
|
import("package.tools.cmake").install(package)
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_test(function (package)
|
|
|
|
assert(package:check_cxxsnippets({test = [[
|
|
|
|
#include <xtensor/xarray.hpp>
|
|
|
|
#include <xtensor-blas/xlinalg.hpp>
|
|
|
|
void test() {
|
|
|
|
xt::xarray<double> t1arg_0 = {{0, 1, 2},
|
|
|
|
{3, 4, 5},
|
|
|
|
{6, 7, 8}};
|
|
|
|
auto t1res = xt::linalg::matrix_power(t1arg_0, 2);
|
|
|
|
}
|
|
|
|
]]}, {configs = {languages = "c++14"}}))
|
|
|
|
end)
|