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

NEON: implement all intrinsics supported by architecture A64-part1 #1090

Merged
merged 42 commits into from
Oct 24, 2023

[Fix] Fix the bugs in the 1st 75 files review.

dccd46e
Select commit
Loading
Failed to load commit list.
Merged

NEON: implement all intrinsics supported by architecture A64-part1 #1090

[Fix] Fix the bugs in the 1st 75 files review.
dccd46e
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 24, 2023 in 29m 54s

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 #1090 NEON: implement all intrinsics supported by architecture A64-part1.
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
3824.1 POWER9 clang CC="clang" Linux passed
3824.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
      }
    ]
  }
}