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

[Patch] neon/st1{,q}_*_x{2,3,4}: initial implementation #1082

Merged
merged 5 commits into from
Oct 18, 2023

[Fix] Add macro SIMDE_BUG_GCC_REV_260989

96bb401
Select commit
Loading
Failed to load commit list.
Merged

[Patch] neon/st1{,q}_*_x{2,3,4}: initial implementation #1082

[Fix] Add macro SIMDE_BUG_GCC_REV_260989
96bb401
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 18, 2023 in 31m 26s

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 #1082 [Patch] neon/st1{,q}_*_x{2,3,4}: initial implementation.
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
3794.1 POWER9 clang CC="clang" Linux passed
3794.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
      }
    ]
  }
}