avx: fix _mm256_shuffle_pd impl #1070
Merged
Travis CI / Travis CI - Pull Request
succeeded
Oct 2, 2023 in 31m 20s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #1070 avx: fix _mm256_shuffle_pd impl.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has two jobs, running in parallel.
Job | Compiler | ENV | OS | State |
---|---|---|---|---|
3701.1 POWER9 | clang | CC="clang" | Linux | passed |
3701.2 z/Arch | gcc | CC="gcc" | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | C |
Operating System | Linux (Focal) |
Build Configuration
{
"language": "c",
"os": [
"linux"
],
"dist": "focal",
"jobs": {
"include": [
{
"name": "POWER9",
"if": "branch != master OR type == pull_request",
"arch": "ppc64le",
"compiler": "clang",
"env": [
{
"CC": "\"clang\""
},
{
"CXX": "\"clang++\""
},
{
"CFLAGS": "\"-mcpu=power9 -Weverything -Werror\""
},
{
"CXXFLAGS": "\"-mcpu=power9 -Weverything -Werror\""
},
{
"JOBS": "\"$(nproc)\""
}
],
"addons": {
"apt": {
"packages": [
"ninja-build python3-pip clang"
]
}
}
},
{
"name": "z/Arch",
"if": "branch != master OR type == pull_request",
"arch": "s390x",
"compiler": "gcc",
"env": [
{
"CC": "\"gcc\""
},
{
"CXX": "\"g++\""
},
{
"CFLAGS": "\"-march=native -mzvector -Wextra -Werror\""
},
{
"CXXFLAGS": "\"-march=native -mzvector -Wextra -Werror\""
},
{
"JOBS": "\"$(nproc)\""
}
],
"addons": {
"apt": {
"packages": [
"ninja-build python3-pip gcc g++"
]
}
}
}
]
},
"before_install": [
"cat /proc/cpuinfo",
"cat /proc/meminfo"
],
"install": [
"pip3 install meson==0.55.0"
],
"script": [
"meson setup build -Db_coverage=true",
"ninja -C build -v -j${JOBS}"
],
"after_success": [
"meson test -C build --print-errorlogs"
],
"notifications": {
"email": [
{
"enabled": false
}
]
}
}
Loading