package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
1.8 KiB

package("xsimd")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/xtensor-stack/xsimd/")
set_description("C++ wrappers for SIMD intrinsics")
set_license("BSD-3-Clause")
add_urls("https://github.com/xtensor-stack/xsimd/archive/refs/tags/$(version).tar.gz",
"https://github.com/xtensor-stack/xsimd.git")
add_versions("7.6.0", "eaf47f1a316ef6c3287b266161eeafc5aa61226ce5ac6c13502546435b790252")
add_versions("8.0.3", "d1d41253c4f82eaf2f369d7fcb4142e35076cf8675b9d94caa06ecf883024344")
if is_plat("windows") then
add_cxxflags("/arch:AVX2")
else
add_cxxflags("-march=native")
end
add_deps("cmake")
on_install("windows", "macosx", "linux", "mingw@windows", function (package)
import("package.tools.cmake").install(package)
end)
on_test(function (package)
if package:version():ge("8.0") then
assert(package:check_cxxsnippets({test = [[
#include <iostream>
void test() {
xsimd::batch<double, xsimd::avx> a{1.5, 2.5, 3.5, 4.5};
xsimd::batch<double, xsimd::avx> b{2.5, 3.5, 4.5, 5.5};
auto mean = (a + b) / 2;
std::cout << mean << std::endl;
}
]]}, {configs = {languages = "c++14"}, includes = "xsimd/xsimd.hpp"}))
else
assert(package:check_cxxsnippets({test = [[
#include <iostream>
void test() {
xsimd::batch<double, 4> a(1.5, 2.5, 3.5, 4.5);
xsimd::batch<double, 4> b(2.5, 3.5, 4.5, 5.5);
auto mean = (a + b) / 2;
std::cout << mean << std::endl;
}
]]}, {configs = {languages = "c++14"}, includes = "xsimd/xsimd.hpp"}))
end
end)