Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

avx: fix _mm256_shuffle_pd impl #1070

Merged
merged 2 commits into from
Oct 2, 2023

avx: simde_mm256_shuffle_pd fix for natural vector size < 128

23ba2cb
Select commit
Loading
Failed to load commit list.
Merged

avx: fix _mm256_shuffle_pd impl #1070

avx: simde_mm256_shuffle_pd fix for natural vector size < 128
23ba2cb
Select commit
Loading
Failed to load commit list.
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
      }
    ]
  }
}