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

cmake: Add ARMPL TPL support #880

Merged
merged 6 commits into from
Jan 28, 2021
Merged

Conversation

e10harvey
Copy link
Contributor

@e10harvey e10harvey commented Jan 27, 2021

Related to #874.

@e10harvey e10harvey self-assigned this Jan 27, 2021
Copy link
Contributor

@ndellingwood ndellingwood left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a failing blake tpl test, if due to a discrepancy that crept in between the test_all_sandia script and blake I can help triage and resolve tomorrow. Awesome to see the the PR tester in action!!

@@ -660,10 +660,10 @@ elif [ "$MACHINE" = "blake" ]; then
SKIP_HWLOC=True
export SLURM_TASKS_PER_NODE=32

module load cmake/3.12.3
module load cmake/3.19.3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for updating this, just got the email this was updated on blake (I modified the nightlies to use the cm_generate_makefile and installed the cmake binaries, we can revert that revert that after this goes in)

COMPILERS=("intel/18.1.163 $BASE_MODULE_LIST_INTEL $INTEL_BUILD_LIST icpc $INTEL_WARNING_FLAGS"
"gcc/7.2.0 $BASE_MODULE_LIST $GCC_BUILD_LIST g++ $GCC_WARNING_FLAGS"
COMPILERS=("intel/18.1.163 $BASE_MODULE_LIST_INTEL "OpenMP,Pthread" icpc $INTEL_WARNING_FLAGS"
"gcc/7.2.0 $BASE_MODULE_LIST "OpenMP_Serial" g++ $GCC_WARNING_FLAGS"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test is failing with the autotester. When I worked on this part of the script initially the blas and lapack were available on the system path, but it's possible that has since changed with system updates. If so, I can help tomorrow to update the script to use a module and set the cmake options to point to the libs etc.

Copy link
Contributor

@ndellingwood ndellingwood Jan 28, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@e10harvey one more change after adding the openblas module to the module list, change this line (around 1079, will vary with your changes) from

if ([[ "$MACHINE" = white* ]] || [[ "$MACHINE" = weaver* ]]) && [[ "$mod" = openblas* ]]; then

to

if ([[ "$MACHINE" = white* ]] || [[ "$MACHINE" = weaver* ]] || [[ "$MACHINE" = blake* ]]) && [[ "$mod" = openblas* ]]; then

This will make sure the openblas tpl is found, as well as provide extra flags that are typically needed (-lgfortran, -lm) to prevent linkage errors when using blas and lapack that are not on a system path

@@ -0,0 +1,32 @@
IF (ARMPL_LIBRARY_DIRS AND ARMPL_LIBRARIES)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes look reasonable, could you post any configure and test output from a system where you tested this? (I'm guessing maybe this was on mayer)? If this is being developed on mayer we can set up a nightly test with these tpls once this goes in

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your review, @ndellingwood !

Expected configure fail

$ ../cm_generate_makefile.bash --with-tpls=armpl --with-scalars=float --arch=A64FX --with-serial --with-openmp --kokkos-path=$HOME/KOKKOS.base/kokkos --kokkos-prefix=$HOME/KOKKOS.base/kokkos/install -kokkoskernels-path=$HOME/KOKKOS.base/kokkos-kernels --prefix=$HOME/KOKKOS.base/kokkos-kernels/install
<snip>
CMake Error at cmake/Modules/FindTPLARMPL.cmake:21 (FIND_PACKAGE):
  By not providing "FindARMPL.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "ARMPL", but
  CMake did not find one.

  Could not find a package configuration file provided by "ARMPL" with any of
  the following names:

    ARMPLConfig.cmake
    armpl-config.cmake

  Add the installation prefix of "ARMPL" to CMAKE_PREFIX_PATH or set
  "ARMPL_DIR" to a directory containing one of the above files.  If "ARMPL"
  provides a separate development package or SDK, be sure it has been
  installed.
Call Stack (most recent call first):
  cmake/kokkoskernels_tpls.cmake:363 (FIND_PACKAGE)
  cmake/kokkoskernels_tpls.cmake:485 (KOKKOSKERNELS_IMPORT_TPL)
  CMakeLists.txt:175 (INCLUDE)


-- Configuring incomplete, errors occurred!

Expected configure pass

$ rm -rf CMake*
$ module load armpl/20.3.0
$ ../cm_generate_makefile.bash --with-tpls=armpl --with-scalars=float --arch=A64FX --with-serial --with-openmp --kokkos-path=$HOME/KOKKOS.base/kokkos --kokkos-prefix=$HOME/KOKKOS.base/kokkos/install -kokkoskernels-path=$HOME/KOKKOS.base/kokkos-kernels --prefix=$HOME/KOKKOS.base/kokkos-kernels/install
<snip>
-- Found Kokkos at /path/to/kokkos/install/lib64/cmake/Kokkos
-- Found TPLARMPL: /path/to/include

=======================
KokkosKernels ETI Types
   Devices:  <OpenMP,HostSpace>;<Serial,HostSpace>
   Scalars:  double;float
   Ordinals: int
   Offsets:  int;size_t
   Layouts:  LayoutLeft

KokkosKernels TPLs
   ARMPL:       /path/to/libamath.so;/path/to/libarmpl.so
=======================

Test suite results

$ make -j8
$ # TODO

Let's discuss setting up nightly tests with this tpl at the next meeting.

@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos kokkos deleted a comment from kokkos-devops-admin Jan 28, 2021
@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 22
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 15
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 43
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 7
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 1
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 1
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: armpl-cmake-support
  • SHA: 88d8647
  • Mode: TEST_REPO

Pull Request Author: e10harvey

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has commited a change to the PR before testing completed. The original testing SHA = 88d8647 Does not match the current commit SHA = d9ff5cf. The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 22
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 15
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 1
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 43
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 7
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 1
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 1
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA 88d8647
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS
Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720 # 22 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake/workspace/KokkosKernels_PullRequest_GCC720
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git init /home/jenkins/blake/workspace/KokkosKernels_PullRequest_GCC720/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c19a915cc9472dde8cdb075d4ad3a86398a43ce6 # timeout=10
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git init /home/jenkins/blake/workspace/KokkosKernels_PullRequest_GCC720/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 16eaed418558dbcf83632b918713bc56401f2bce # timeout=10
[KokkosKernels_PullRequest_GCC720] $ /bin/bash -el /tmp/jenkins8136596092604883692.sh
salloc: Granted job allocation 1000674
Running on machine: blake
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: gcc/7.2.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-Pthread_Serial-release
kokkos devices: Pthread,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-Pthread_Serial-release
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=206 run_time=56
gcc-7.2.0-Pthread_Serial-release build_time=338 run_time=150
salloc: Relinquishing job allocation 1000674
/home/jenkins/blake/workspace/KokkosKernels_PullRequest_GCC720
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC720 # 15 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_GCC720
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git init /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk c19a915cc9472dde8cdb075d4ad3a86398a43ce6 # timeout=10
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git init /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_GCC720/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
 > /home/projects/x86-64/git/2.9.4/bin/git rev-list --no-walk 16eaed418558dbcf83632b918713bc56401f2bce # timeout=10
[KokkosKernels_PullRequest_Tpls_GCC720] $ /bin/bash -el /tmp/jenkins1018460399309101679.sh
salloc: Granted job allocation 1000675
Running on machine: blake
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: gcc/7.2.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP_Serial-release build_time=375 run_time=127
salloc: Relinquishing job allocation 1000675
salloc: Job allocation 1000675 has been revoked.
/home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_GCC720
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_INTEL18 # 1 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on blake (Testbed skylake) in workspace /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git init /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git init /home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_INTEL18/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/x86-64/git/2.9.4/bin/git --version # timeout=10
 > git --version # 'git version 2.9.4'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/x86-64/git/2.9.4/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/x86-64/git/2.9.4/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/x86-64/git/2.9.4/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/x86-64/git/2.9.4/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
First time build. Skipping changelog.
[KokkosKernels_PullRequest_Tpls_INTEL18] $ /bin/bash -el /tmp/jenkins3380109101187912611.sh
salloc: Granted job allocation 1000676
Running on machine: blake
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: intel/18.1.163
Testing compiler intel/18.1.163
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-OpenMP-release
kokkos devices: OpenMP
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-18.1.163-OpenMP-release
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Unrecognized compiler intel/18.1.163 when looking for Spack variants
Starting job intel-18.1.163-Pthread-release
kokkos devices: Pthread
kokkos arch: SKX
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED intel-18.1.163-Pthread-release
#######################################################
PASSED TESTS
#######################################################
intel-18.1.163-OpenMP-release build_time=843 run_time=45
intel-18.1.163-Pthread-release build_time=405 run_time=57
salloc: Relinquishing job allocation 1000676
salloc: Job allocation 1000676 has been revoked.
/home/jenkins/blake/workspace/KokkosKernels_PullRequest_Tpls_INTEL18
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_GCC720_Light # 43 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk c19a915cc9472dde8cdb075d4ad3a86398a43ce6 # timeout=10
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 16eaed418558dbcf83632b918713bc56401f2bce # timeout=10
[KokkosKernels_PullRequest_GCC720_Light] $ /bin/bash -el /tmp/jenkins5317930536141193458.sh
***Forced exclusive execution
Job <70083> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: gcc/7.2.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
Starting job gcc-7.2.0-Serial-release
kokkos devices: Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-Serial-release
Starting job gcc-7.2.0-OpenMP_Serial-release
kokkos devices: OpenMP,Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP_Serial-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=179 run_time=59
gcc-7.2.0-OpenMP_Serial-release build_time=252 run_time=178
gcc-7.2.0-Serial-release build_time=173 run_time=72
/home/jenkins/white/workspace/KokkosKernels_PullRequest_GCC720_Light
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA10 # 7 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk c19a915cc9472dde8cdb075d4ad3a86398a43ce6 # timeout=10
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-list --no-walk 16eaed418558dbcf83632b918713bc56401f2bce # timeout=10
[KokkosKernels_PullRequest_Tpls_CUDA10] $ /bin/bash -el /tmp/jenkins3274497554670255345.sh
***Forced exclusive execution
Job <70084> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: cuda/10.1.105
Testing compiler cuda/10.1.105
Unrecognized compiler cuda/10.1.105 when looking for Spack variants
Unrecognized compiler cuda/10.1.105 when looking for Spack variants
Unrecognized compiler cuda/10.1.105 when looking for Spack variants
Starting job cuda-10.1.105-Cuda_Serial-release
kokkos devices: Cuda,Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options: ,enable_lambda
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED cuda-10.1.105-Cuda_Serial-release
#######################################################
PASSED TESTS
#######################################################
cuda-10.1.105-Cuda_Serial-release build_time=792 run_time=239
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA10
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_CUDA9 # 1 (click to expand)

Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
First time build. Skipping changelog.
[KokkosKernels_PullRequest_Tpls_CUDA9] $ /bin/bash -el /tmp/jenkins7262353327152970554.sh
***Forced exclusive execution
Job <70085> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: cuda/9.2.88
Testing compiler cuda/9.2.88
Unrecognized compiler cuda/9.2.88 when looking for Spack variants
Unrecognized compiler cuda/9.2.88 when looking for Spack variants
Unrecognized compiler cuda/9.2.88 when looking for Spack variants
Starting job cuda-9.2.88-Cuda_OpenMP-release
kokkos devices: Cuda,OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options: force_uvm,enable_lambda
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED cuda-9.2.88-Cuda_OpenMP-release
#######################################################
PASSED TESTS
#######################################################
cuda-9.2.88-Cuda_OpenMP-release build_time=844 run_time=195
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_CUDA9
Finished: SUCCESS

Console Output (last 100 lines) : KokkosKernels_PullRequest_Tpls_GCC720_GCC740 # 1 (click to expand)

Building remotely on White (Testbed Power8) in workspace /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos-kernels # timeout=10
Fetching upstream changes from https://github.com/e10harvey/kokkos-kernels
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/e10harvey/kokkos-kernels +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/e10harvey/kokkos-kernels # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse refs/remotes/origin/armpl-cmake-support^{commit} # timeout=10
Checking out Revision 88d8647d11b5bfa6fe7e2094ca03d979b003205a (refs/remotes/origin/armpl-cmake-support)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f 88d8647d11b5bfa6fe7e2094ca03d979b003205a # timeout=10
Commit message: "scripts: Reduce build list size"
First time build. Skipping changelog.
The recommended git tool is: NONE
No credentials specified
Cloning the remote Git repository
Cloning repository https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git init /home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740/kokkos # timeout=10
Fetching upstream changes from https://github.com/kokkos/kokkos.git
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git --version # timeout=10
 > git --version # 'git version 2.10.1'
Setting http proxy: wwwproxy.sandia.gov:80
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git fetch --tags --progress -- https://github.com/kokkos/kokkos.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config remote.origin.url https://github.com/kokkos/kokkos.git # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
Avoid second fetch
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git rev-parse origin/develop^{commit} # timeout=10
Checking out Revision da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de (origin/develop)
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git config core.sparsecheckout # timeout=10
 > /home/projects/pwr8-rhel73-lsf/git/2.10.1/bin/git checkout -f da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de # timeout=10
Commit message: "Merge pull request #3755 from masterleinad/fix_sycl_typo"
First time build. Skipping changelog.
[KokkosKernels_PullRequest_Tpls_GCC720_GCC740] $ /bin/bash -el /tmp/jenkins6243200436255107912.sh
***Forced exclusive execution
Job <70086> is submitted to queue .
<>
<>
Running on machine: white
KokkosKernels Repository Status:  88d8647d11b5bfa6fe7e2094ca03d979b003205a scripts: Reduce build list size

Kokkos Repository Status: da6e9075d4ae2b5927fd89f72d9a01d06b9ce5de Merge pull request #3755 from masterleinad/fix_sycl_typo

Going to test compilers: gcc/7.2.0 gcc/7.4.0
Testing compiler gcc/7.2.0
Starting job gcc-7.2.0-Serial-release
kokkos devices: Serial
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-Serial-release
Testing compiler gcc/7.4.0
Starting job gcc-7.2.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.2.0-OpenMP-release
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Unrecognized compiler gcc/7.4.0 when looking for Spack variants
Starting job gcc-7.4.0-OpenMP-release
kokkos devices: OpenMP
kokkos arch: Power8,Pascal60
kokkos options:
kokkos cuda options:
kokkos cxxflags: -O3 -Wall -Wshadow -pedantic -Werror -Wsign-compare -Wtype-limits -Wignored-qualifiers -Wempty-body -Wclobbered -Wuninitialized
extra_args:
kokkoskernels scalars: 'double,complex_double'
kokkoskernels ordinals: int
kokkoskernels offsets: int,size_t
kokkoskernels layouts: LayoutLeft
PASSED gcc-7.4.0-OpenMP-release
#######################################################
PASSED TESTS
#######################################################
gcc-7.2.0-OpenMP-release build_time=180 run_time=60
gcc-7.2.0-Serial-release build_time=166 run_time=74
gcc-7.4.0-OpenMP-release build_time=188 run_time=57
/home/jenkins/white/workspace/KokkosKernels_PullRequest_Tpls_GCC720_GCC740
Finished: SUCCESS

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 23
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 16
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 2
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 44
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 8
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 2
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 2
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Using Repos:

Repo: KOKKOSKERNELS (e10harvey/kokkos-kernels)
  • Branch: armpl-cmake-support
  • SHA: d9ff5cf
  • Mode: TEST_REPO

Pull Request Author: e10harvey

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: KokkosKernels_PullRequest_GCC720

  • Build Num: 23
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720

  • Build Num: 16
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_INTEL18

  • Build Num: 2
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_GCC720_Light

  • Build Num: 44
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA10

  • Build Num: 8
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_CUDA9

  • Build Num: 2
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

Build Information

Test Name: KokkosKernels_PullRequest_Tpls_GCC720_GCC740

  • Build Num: 2
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
KOKKOSKERNELS_SOURCE_BRANCH armpl-cmake-support
KOKKOSKERNELS_SOURCE_REPO https://github.com/e10harvey/kokkos-kernels
KOKKOSKERNELS_SOURCE_SHA d9ff5cf
KOKKOSKERNELS_TARGET_BRANCH develop
KOKKOSKERNELS_TARGET_REPO https://github.com/kokkos/kokkos-kernels
KOKKOSKERNELS_TARGET_SHA 776fadd
PULLREQUESTNUM 880
TEST_REPO_ALIAS KOKKOSKERNELS

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Merge Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS NOT BEEN REVIEWED YET!

@kokkos-devops-admin
Copy link

All Jobs Finished; status = PASSED, However Inspection must be performed before merge can occur...

Copy link
Contributor

@ndellingwood ndellingwood left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm, thanks @e10harvey ! Let me know if this is ready for merge

@kokkos-devops-admin
Copy link

Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ ndellingwood ]!

@kokkos-devops-admin
Copy link

Status Flag 'Pull Request AutoTester' - Pull Request MUST BE MERGED MANUALLY BY Project Team - This Repo does not support Automerge

@e10harvey e10harvey merged commit ac10670 into kokkos:develop Jan 28, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants