From d1f4956e9d02ca9f66a03aabf3641637ba55e370 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 28 Feb 2023 19:00:58 +0000 Subject: [PATCH 1/9] various devcontainer changes, plus MRC_HOME -> MRC_ROOT rename --- .devcontainer/Dockerfile | 18 ++++ .devcontainer/devcontainer.json | 92 ++++++++++++------- .devcontainer/home/.gdbinit | 3 - .devcontainer/initialize-command.sh | 21 +++++ .../opt/mrc/bin/post-attach-command.sh | 33 +++++++ .../opt/mrc/bin/update-content-command.sh | 23 +++++ .devcontainer/opt/mrc/etc/.gdbinit | 3 + .../etc}/enable_conda_libstd_pretty_print.py | 0 CONTRIBUTING.md | 24 ++--- README.md | 26 +++--- ci/conda/README.md | 6 +- docs/quickstart/README.md | 6 +- 12 files changed, 189 insertions(+), 66 deletions(-) create mode 100644 .devcontainer/Dockerfile delete mode 100644 .devcontainer/home/.gdbinit create mode 100755 .devcontainer/initialize-command.sh create mode 100755 .devcontainer/opt/mrc/bin/post-attach-command.sh create mode 100755 .devcontainer/opt/mrc/bin/update-content-command.sh create mode 100644 .devcontainer/opt/mrc/etc/.gdbinit rename .devcontainer/{home/.config/gdb => opt/mrc/etc}/enable_conda_libstd_pretty_print.py (100%) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..d1ffbce77 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,18 @@ +# SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +FROM rapidsai/devcontainers:23.04-cuda11.8-mambaforge-ubuntu22.04 AS base + +ENV PATH="${PATH}:/workspaces/mrc/.devcontainer/bin" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 704e4519b..9370df255 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,12 +1,63 @@ +// SPDX-FileCopyrightText: Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +// SPDX-License-Identifier: Apache-2.0 +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. { + "name": "mrc-dev", "build": { - "args": { - "USERNAME": "${localEnv:USER}", - "USER_ID": "${localEnv:UID}" + "dockerfile": "Dockerfile" + }, + "hostRequirements": { + "gpu": true + }, + "capAdd":[ + "SYS_NICE", + "SYS_PTRACE" + ], + "securityOpt": [ + "seccomp=unconfined" + ], + "runArgs": [ + "--network=host" + ], + "containerEnv": { + "HOST_MRC_ROOT": "${localWorkspaceFolder}", + "MRC_ROOT": "${containerWorkspaceFolder}", + "DEFAULT_CONDA_ENV": "mrc", + "MAMBA_NO_BANNER": "1", + "VAULT_HOST": "https://vault.ops.k8s.rapids.ai" + }, + "initializeCommand": [ "${localWorkspaceFolder}/.devcontainer/initialize-command.sh" ], + "remoteUser": "coder", + "mounts": [ + { + "type":"bind", + "source": "${localWorkspaceFolder}/../.conda", + "target": "/home/coder/.conda" }, - "context": "..", - "dockerfile": "${localWorkspaceFolder}/Dockerfile", - "target": "development" + { + "type":"bind", + "source": "${localWorkspaceFolder}/../.config", // parent folder because sister repos are sibling dirs + "target": "/home/coder/.config" + }, + { + "type": "bind", + "source": "${localWorkspaceFolder}/.devcontainer/opt/mrc", + "target": "/opt/mrc" + }, + ], + "features": { + "ghcr.io/devcontainers/features/dotnet:1": {} }, "customizations": { "vscode": { @@ -26,34 +77,11 @@ "xaver.clang-format" ], "settings": { - "cmake.cmakePath": "cmake", // Ensure we use the default from the conda environment - // Fix for https://github.com/dotnet/vscode-dotnet-runtime/issues/159 - // Once version 1.6.1 of the extension has been release, this can be removed + "cmake.cmakePath": "/tmp/.current-conda-env/bin/cmake", "cmake.languageSupport.dotnetPath": "/usr/bin/dotnet", + "C_Cpp.intelliSenseEngine": "disabled", + "python.terminal.activateEnvironment": false } } }, - "hostRequirements": { - "gpu": true - }, - "mounts": [ - // Mount the necessary files for GDB pretty-printing to work - "source=${localWorkspaceFolder}/.devcontainer/home/.gdbinit,target=/home/${localEnv:USER}/.gdbinit,type=bind", - "source=${localWorkspaceFolder}/.devcontainer/home/.config/gdb,target=/home/${localEnv:USER}/.config/gdb,type=bind", - // Mount the Github CLI config directory to allow using the Github CLI - "source=${localEnv:HOME}/.config/gh,target=/home/${localEnv:USER}/.config/gh,type=bind", - ], - "name": "mrc-dev", - "overrideCommand": true, // infinite loop of sleeps, - "remoteUser": "${localEnv:USER}", - "runArgs": [ - "--network=host", - "--cap-add=SYS_PTRACE", - "--cap-add=SYS_NICE", - "--security-opt", - "seccomp=unconfined" - ], - "updateRemoteUserUID": true, - "workspaceFolder": "/work", - "workspaceMount": "source=${localWorkspaceFolder},target=/work,type=bind,consistency=cached" } diff --git a/.devcontainer/home/.gdbinit b/.devcontainer/home/.gdbinit deleted file mode 100644 index 43e108353..000000000 --- a/.devcontainer/home/.gdbinit +++ /dev/null @@ -1,3 +0,0 @@ -add-auto-load-safe-path /opt/conda - -source ~/.config/gdb/enable_conda_libstd_pretty_print.py diff --git a/.devcontainer/initialize-command.sh b/.devcontainer/initialize-command.sh new file mode 100755 index 000000000..807451923 --- /dev/null +++ b/.devcontainer/initialize-command.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# create the parent conda folder so it's found when mounting +mkdir -p ../.conda + +# create a config directory if it does not exist so it's found when mounting +mkdir -p ../.config diff --git a/.devcontainer/opt/mrc/bin/post-attach-command.sh b/.devcontainer/opt/mrc/bin/post-attach-command.sh new file mode 100755 index 000000000..eb00a5061 --- /dev/null +++ b/.devcontainer/opt/mrc/bin/post-attach-command.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Ensure our ~/.config directory has the correct permissions. If ~/.config did +# not exist, and you mount ~/.config/gh from the host, then ~/.config will be +# created with root permissions which can break things + +conda_env_find(){ + conda env list | grep "${@}" >/dev/null 2>/dev/null +} + +ENV_NAME=${ENV_NAME:-mrc} + +sed -ri "s/conda activate base/conda activate $ENV_NAME/g" ~/.bashrc; + +if conda_env_find "${ENV_NAME}" ; \ + +then mamba env update --name ${ENV_NAME} -f ${MRC_ROOT}/ci/conda/environments/dev_env.yml --prune; \ +else mamba env create --name ${ENV_NAME} -f ${MRC_ROOT}/ci/conda/environments/dev_env.yml; \ +fi diff --git a/.devcontainer/opt/mrc/bin/update-content-command.sh b/.devcontainer/opt/mrc/bin/update-content-command.sh new file mode 100755 index 000000000..2e025db79 --- /dev/null +++ b/.devcontainer/opt/mrc/bin/update-content-command.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# SPDX-FileCopyrightText: Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Ensure our ~/.config directory has the correct permissions. If ~/.config did +# not exist, and you mount ~/.config/gh from the host, then ~/.config will be +# created with root permissions which can break things + +if [[ ! -f ~/.config/.gdbinit ]]; then + cp /opt/mrc/etc/.gdbinit ~/.config/.gdbinit +fi diff --git a/.devcontainer/opt/mrc/etc/.gdbinit b/.devcontainer/opt/mrc/etc/.gdbinit new file mode 100644 index 000000000..0fa2be45f --- /dev/null +++ b/.devcontainer/opt/mrc/etc/.gdbinit @@ -0,0 +1,3 @@ +add-auto-load-safe-path /opt/conda + +source /opt/mrc/etc/enable_conda_libstd_pretty_print.py diff --git a/.devcontainer/home/.config/gdb/enable_conda_libstd_pretty_print.py b/.devcontainer/opt/mrc/etc/enable_conda_libstd_pretty_print.py similarity index 100% rename from .devcontainer/home/.config/gdb/enable_conda_libstd_pretty_print.py rename to .devcontainer/opt/mrc/etc/enable_conda_libstd_pretty_print.py diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 08281aae7..529d501d5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,41 +77,41 @@ Some options: #### Clone MRC repository ```bash -export MRC_HOME=$(pwd)/mrc -git clone --recurse-submodules git@github.com:nv-morpheus/mrc.git $MRC_HOME -cd $MRC_HOME +export MRC_ROOT=$(pwd)/mrc +git clone --recurse-submodules git@github.com:nv-morpheus/mrc.git $MRC_ROOT +cd $MRC_ROOT ``` #### Create MRC Conda environment ```bash # note: `mamba` may be used in place of `conda` for better performance. -conda env create -n mrc --file $MRC_HOME/ci/conda/environments/dev_env.yml +conda env create -n mrc --file $MRC_ROOT/ci/conda/environments/dev_env.yml conda activate mrc ``` #### Build MRC ```bash -mkdir $MRC_HOME/build -cd $MRC_HOME/build +mkdir $MRC_ROOT/build +cd $MRC_ROOT/build cmake .. make -j $(nproc) ``` #### Run MRC C++ Tests ```bash -export MRC_TEST_INTERNAL_DATA_PATH=$MRC_HOME/src/tests -$MRC_HOME/build/src/tests/test_mrc_private.x -$MRC_HOME/build/tests/test_mrc.x -$MRC_HOME/build/tests/logging/test_mrc_logging.x +export MRC_TEST_INTERNAL_DATA_PATH=$MRC_ROOT/cpp/mrc/src/tests +$MRC_ROOT/build/cpp/mrcsrc/tests/test_mrc_private.x +$MRC_ROOT/build/cpp/mrctests/test_mrc.x +$MRC_ROOT/build/cpp/mrctests/logging/test_mrc_logging.x ``` ### Install MRC Python ```bash -pip install -e $MRC_HOME/build/python +pip install -e $MRC_ROOT/build/python ``` #### Run MRC Python Tests ```bash -pytest $MRC_HOME/python +pytest $MRC_ROOT/python ``` ### Building API Documentation diff --git a/README.md b/README.md index 69e559c65..d830b4c46 100644 --- a/README.md +++ b/README.md @@ -110,46 +110,46 @@ Installing via source is for more advanced users and is necessary to try MRC fea #### Clone MRC repository ```bash -export MRC_HOME=$(pwd)/mrc -git clone --recurse-submodules git@github.com:nv-morpheus/mrc.git $MRC_HOME -cd $MRC_HOME +export MRC_ROOT=$(pwd)/mrc +git clone --recurse-submodules git@github.com:nv-morpheus/mrc.git $MRC_ROOT +cd $MRC_ROOT ``` #### Create MRC Conda Environment ```bash # note: `mamba` may be used in place of `conda` for better performance. -conda env create -n mrc-dev --file $MRC_HOME/ci/conda/environments/dev_env.yml +conda env create -n mrc-dev --file $MRC_ROOT/ci/conda/environments/dev_env.yml conda activate mrc-dev ``` #### Build MRC ```bash -mkdir $MRC_HOME/build -cd $MRC_HOME/build +mkdir $MRC_ROOT/build +cd $MRC_ROOT/build cmake .. make -j $(nproc) ``` #### Run MRC C++ Tests ```bash -export MRC_TEST_INTERNAL_DATA_PATH=$MRC_HOME/src/tests -$MRC_HOME/build/src/tests/test_mrc_private.x -$MRC_HOME/build/tests/test_mrc.x -$MRC_HOME/build/tests/logging/test_mrc_logging.x +export MRC_TEST_INTERNAL_DATA_PATH=$MRC_ROOT/cpp/mrc/src/tests +$MRC_ROOT/build/cpp/mrc/src/tests/test_mrc_private.x +$MRC_ROOT/build/cpp/mrc/tests/test_mrc.x +$MRC_ROOT/build/cpp/mrc/tests/logging/test_mrc_logging.x ``` #### Install MRC Python Bindings ```bash -pip install -e $MRC_HOME/build/python +pip install -e $MRC_ROOT/build/python ``` #### Run MRC Python Tests ```bash -pytest $MRC_HOME/python +pytest $MRC_ROOT/python ``` ### Docker Installation -A Dockerfile is provided at `$MRC_HOME` and can be built with +A Dockerfile is provided at `$MRC_ROOT` and can be built with ```bash docker build -t mrc:latest . ``` diff --git a/ci/conda/README.md b/ci/conda/README.md index afef29543..56e6045fb 100644 --- a/ci/conda/README.md +++ b/ci/conda/README.md @@ -3,7 +3,7 @@ To build the Conda packages, it's recommended to run the provided scripts from a docker container. To build the container, `mrc-conda-build`, run the following: ```bash -cd ${MRC_HOME} +cd ${MRC_ROOT} docker buildx build --target developement -t mrc-conda-build . ``` @@ -20,10 +20,10 @@ docker run --rm -ti -v $PWD:/work \ mrc-conda-build ./ci/conda/recipes/run_conda_build.sh ``` -This will save the conda packages to `${MRC_HOME}/.conda-bld`. To install from this location, use the following: +This will save the conda packages to `${MRC_ROOT}/.conda-bld`. To install from this location, use the following: ```bash -conda install -c file://${MRC_HOME}/.conda-bld mrc +conda install -c file://${MRC_ROOT}/.conda-bld mrc ``` ## Uploading the Conda Package diff --git a/docs/quickstart/README.md b/docs/quickstart/README.md index ac6f01b99..1000ae9d8 100644 --- a/docs/quickstart/README.md +++ b/docs/quickstart/README.md @@ -23,7 +23,7 @@ If you've alredy followed the MRC library installation instructions in the [main ```bash # Change directory to the quickstart root -cd ${MRC_HOME}/docs/quickstart/ +cd ${MRC_ROOT}/docs/quickstart/ # Update the existing MRC conda environment. Here, we assume the environment is named `mrc`, but you can change this to the environment name you used, if different conda env update -n mrc -f environment_cpp.yml @@ -39,7 +39,7 @@ pip install -e python If you haven't installed MRC or would like to create an entirely new Conda environment for the Quick Start Guide, run: ```bash # Change directory to the quickstart root -cd ${MRC_HOME}/docs/quickstart/ +cd ${MRC_ROOT}/docs/quickstart/ # Create a new MRC conda environment. Here, we assume the environment is named `mrc-quickstart` conda env create -n mrc-quickstart -f environment_cpp.yml @@ -62,7 +62,7 @@ If you encounter errors building the examples, this is mostly likely caused for A comprehensive overview of building MRC from source is provided in the [MRC README](../../README.md#source-installation). To build the Quick Start Guide examples, simply run ```bash -cd ${MRC_HOME}/docs/quickstart +cd ${MRC_ROOT}/docs/quickstart # Build the QSG including the C++ examples ./compile.sh From 235e5a2e2c5819dd09c6d994855047c11b9fcae1 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 7 Mar 2023 23:53:50 +0000 Subject: [PATCH 2/9] use two separate mounts for conda and conda/pkgs --- .devcontainer/devcontainer.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9370df255..62e9e1aa5 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -41,12 +41,17 @@ "remoteUser": "coder", "mounts": [ { - "type":"bind", - "source": "${localWorkspaceFolder}/../.conda", + "type": "bind", + "source": "${localWorkspaceFolder}/.cache/conda", "target": "/home/coder/.conda" }, { - "type":"bind", + "type": "bind", + "source": "${localWorkspaceFolder}/../.conda/pkgs", + "target": "/home/coder/.conda/pkgs" + }, + { + "type": "bind", "source": "${localWorkspaceFolder}/../.config", // parent folder because sister repos are sibling dirs "target": "/home/coder/.config" }, From 6c7bf8db5af6a9062233a107dbd6f9c270f66c85 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Wed, 8 Mar 2023 16:05:47 +0000 Subject: [PATCH 3/9] make devcontainer conda mounts more resilient --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 62e9e1aa5..6046d60a1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -42,8 +42,8 @@ "mounts": [ { "type": "bind", - "source": "${localWorkspaceFolder}/.cache/conda", - "target": "/home/coder/.conda" + "source": "${localWorkspaceFolder}/.cache/conda/envs", + "target": "/home/coder/.conda/envs" }, { "type": "bind", From 70d9d3a00715d50831f156d1dd53df16d66d7e42 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Mon, 3 Apr 2023 23:53:36 +0000 Subject: [PATCH 4/9] . --- CMakeLists.txt | 2 +- Dockerfile | 4 ++-- ci/conda/environments/dev_env.yml | 8 ++++---- ci/conda/recipes/libmrc/conda_build_config.yaml | 6 +++--- ci/conda/recipes/libmrc/meta.yaml | 2 +- ci/conda/recipes/run_conda_build.sh | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e19c3a8ba..46c9af65d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ option(MRC_USE_CONDA "Enables finding dependencies via conda. All dependencies m environment" ON) option(MRC_USE_IWYU "Enable running include-what-you-use as part of the build process" OFF) -set(MRC_RAPIDS_VERSION "22.10" CACHE STRING "Which version of RAPIDS to build for. Sets default versions for RAPIDS CMake and RMM.") +set(MRC_RAPIDS_VERSION "23.02" CACHE STRING "Which version of RAPIDS to build for. Sets default versions for RAPIDS CMake and RMM.") set(MRC_CACHE_DIR "${CMAKE_SOURCE_DIR}/.cache" CACHE PATH "Directory to contain all CPM and CCache data") mark_as_advanced(MRC_CACHE_DIR) diff --git a/Dockerfile b/Dockerfile index 266d514c4..c82fb7a3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,13 +17,13 @@ ARG FROM_IMAGE="rapidsai/ci" -ARG CUDA_VER=11.4.1 +ARG CUDA_VER=11.8.0 ARG LINUX_DISTRO=ubuntu ARG LINUX_VER=20.04 ARG PYTHON_VER=3.8 # ============= base =================== -FROM ${FROM_IMAGE}:cuda11.4.1-ubuntu20.04-py3.8 AS base +FROM ${FROM_IMAGE}:cuda11.8.0-ubuntu20.04-py3.8 AS base ARG PROJ_NAME=mrc diff --git a/ci/conda/environments/dev_env.yml b/ci/conda/environments/dev_env.yml index 5bc4f0498..9af91f9b9 100644 --- a/ci/conda/environments/dev_env.yml +++ b/ci/conda/environments/dev_env.yml @@ -10,8 +10,8 @@ dependencies: - boost-cpp=1.74 - ccache - cmake=3.24 - - cuda-nvml-dev=11.4 - - cudatoolkit=11.4 + - cuda-nvml-dev=11.8 + - cudatoolkit=11.8 - cython=0.29.24 - doxygen=1.9.2 - flatbuffers=2.0 @@ -31,13 +31,13 @@ dependencies: - lcov=1.15 - libhwloc=2.5 - libprotobuf=3.20 - - librmm=22.10 + - librmm=23.02 - libtool - ninja=1.10 - nlohmann_json=3.9 - numactl-libs-cos7-x86_64 - numpy=1.21.2 - - nvcc_linux-64=11.4 + - nvcc_linux-64=11.8 - pip - pkg-config=0.29 - pybind11-stubgen=0.10 diff --git a/ci/conda/recipes/libmrc/conda_build_config.yaml b/ci/conda/recipes/libmrc/conda_build_config.yaml index 11ef76893..a446afafa 100644 --- a/ci/conda/recipes/libmrc/conda_build_config.yaml +++ b/ci/conda/recipes/libmrc/conda_build_config.yaml @@ -23,7 +23,7 @@ cuda_compiler: - nvcc cuda_compiler_version: - - 11.4 + - 11.8 python: - 3.8 @@ -31,9 +31,9 @@ python: # Setup the dependencies to build with multiple versions of RAPIDS rapids_version: # Keep around compatibility with current version -1 - - 22.08 - 22.08 - 22.10 + - 23.02 # Multiple versions of abseil are required to satisfy the solver for some @@ -41,7 +41,7 @@ rapids_version: # Keep around compatibility with current version -1 # 1.46. For each version of gRPC, support 2 abseil versions. Zip all of the keys # together to avoid impossible combinations abseil_cpp: - - 20211102.0 + - 20220623.0 - 20220623.0 - 20220623.0 diff --git a/ci/conda/recipes/libmrc/meta.yaml b/ci/conda/recipes/libmrc/meta.yaml index 60b0e7545..3585ebe87 100644 --- a/ci/conda/recipes/libmrc/meta.yaml +++ b/ci/conda/recipes/libmrc/meta.yaml @@ -16,7 +16,7 @@ {% set version = environ.get('GIT_VERSION', '0.0.0.dev').lstrip('v') + environ.get('VERSION_SUFFIX', '') %} {% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %} {% set py_version = environ.get('CONDA_PY', '3.8') %} -{% set cuda_version = '.'.join(environ.get('CUDA', '11.4').split('.')[:2]) %} +{% set cuda_version = '.'.join(environ.get('CUDA', '11.8').split('.')[:2]) %} {% set cuda_major = cuda_version.split('.')[0] %} package: diff --git a/ci/conda/recipes/run_conda_build.sh b/ci/conda/recipes/run_conda_build.sh index 3b3d65727..e0ed9ab94 100755 --- a/ci/conda/recipes/run_conda_build.sh +++ b/ci/conda/recipes/run_conda_build.sh @@ -42,7 +42,7 @@ export MRC_ROOT=${MRC_ROOT:-$(git rev-parse --show-toplevel)} export CUDA="$(conda list | grep cudatoolkit | egrep -o "[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")" export PYTHON_VER="$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")" -export CUDA=11.4.1 +export CUDA=11.8.0 echo "CUDA : ${CUDA}" echo "PYTHON_VER : ${PYTHON_VER}" echo "" @@ -99,7 +99,7 @@ fi # Choose default variants if hasArg quick; then # For quick build, just do most recent version of rapids - CONDA_ARGS_ARRAY+=("--variants" "{python: 3.8, rapids_version: 22.10}") + CONDA_ARGS_ARRAY+=("--variants" "{python: 3.8, rapids_version: 23.02}") else CONDA_ARGS_ARRAY+=("--variants" "{python: 3.8}") fi From 175e5b04552468b868d6f3227c2e21ec7ca1e163 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 4 Apr 2023 00:52:13 +0000 Subject: [PATCH 5/9] . --- external/utilities | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/utilities b/external/utilities index 0fb0b0aab..846c3a72f 160000 --- a/external/utilities +++ b/external/utilities @@ -1 +1 @@ -Subproject commit 0fb0b0aab16f758adf28d1626945544172406585 +Subproject commit 846c3a72f1ba4b867476c318b6e719bcf9423ffd From faa9e4102b854328901253898269019ddc7f00ff Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 4 Apr 2023 01:32:31 +0000 Subject: [PATCH 6/9] . --- ci/conda/recipes/libmrc/conda_build_config.yaml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/ci/conda/recipes/libmrc/conda_build_config.yaml b/ci/conda/recipes/libmrc/conda_build_config.yaml index a446afafa..228e9e5f3 100644 --- a/ci/conda/recipes/libmrc/conda_build_config.yaml +++ b/ci/conda/recipes/libmrc/conda_build_config.yaml @@ -31,8 +31,6 @@ python: # Setup the dependencies to build with multiple versions of RAPIDS rapids_version: # Keep around compatibility with current version -1 - - 22.08 - - 22.10 - 23.02 @@ -41,20 +39,14 @@ rapids_version: # Keep around compatibility with current version -1 # 1.46. For each version of gRPC, support 2 abseil versions. Zip all of the keys # together to avoid impossible combinations abseil_cpp: - - 20220623.0 - - 20220623.0 - - 20220623.0 + - 20230125.0 grpc_cpp: - - 1.46 - - 1.46 - - 1.46 + - 1.51.1 # UCX 1.12 is required for RAPIDS 22.06 ucx: - 1.13 - - 1.13 - - 1.13 zip_keys: @@ -62,6 +54,7 @@ zip_keys: - abseil_cpp - grpc_cpp - ucx + - libprotobuf # The following mimic what is available in the pinning feedstock: # https://github.com/conda-forge/conda-forge-pinning-feedstock/blob/main/recipe/conda_build_config.yaml @@ -73,8 +66,6 @@ gflags: - 2.2 glog: - 0.6 -libprotobuf: - - 3.20 pin_run_as_build: From 8c10908a1bc0311b0b4f821c54d0db83ff2b3bc1 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 4 Apr 2023 16:52:25 +0000 Subject: [PATCH 7/9] conda-build works for rmm 23.02 --- CMakeLists.txt | 2 +- .../recipes/libmrc/conda_build_config.yaml | 20 ++++++++++++++----- ci/conda/recipes/libmrc/meta.yaml | 8 ++++---- docs/quickstart/CMakeLists.txt | 2 +- 4 files changed, 21 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46c9af65d..3a070e395 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,7 +78,7 @@ morpheus_utils_initialize_package_manager( morpheus_utils_initialize_cuda_arch(mrc) project(mrc - VERSION 23.03.00 + VERSION 23.07.00 LANGUAGES C CXX ) diff --git a/ci/conda/recipes/libmrc/conda_build_config.yaml b/ci/conda/recipes/libmrc/conda_build_config.yaml index 228e9e5f3..dc355e756 100644 --- a/ci/conda/recipes/libmrc/conda_build_config.yaml +++ b/ci/conda/recipes/libmrc/conda_build_config.yaml @@ -31,27 +31,33 @@ python: # Setup the dependencies to build with multiple versions of RAPIDS rapids_version: # Keep around compatibility with current version -1 + - 22.08 + - 22.10 - 23.02 - # Multiple versions of abseil are required to satisfy the solver for some # environments. RAPIDS 22.06 only works with gRPC 1.45 and 22.08 only works with # 1.46. For each version of gRPC, support 2 abseil versions. Zip all of the keys # together to avoid impossible combinations -abseil_cpp: +libabseil: + - 20220623.0 + - 20220623.0 - 20230125.0 grpc_cpp: - - 1.51.1 + - 1.46 + - 1.46 + - 1.51 # UCX 1.12 is required for RAPIDS 22.06 ucx: - 1.13 - + - 1.13 + - 1.13 zip_keys: - rapids_version - - abseil_cpp + - libabseil - grpc_cpp - ucx - libprotobuf @@ -66,6 +72,10 @@ gflags: - 2.2 glog: - 0.6 +libprotobuf: + - 3.20 + - 3.20 + - 3.21 pin_run_as_build: diff --git a/ci/conda/recipes/libmrc/meta.yaml b/ci/conda/recipes/libmrc/meta.yaml index 3585ebe87..fb742a60a 100644 --- a/ci/conda/recipes/libmrc/meta.yaml +++ b/ci/conda/recipes/libmrc/meta.yaml @@ -50,7 +50,7 @@ requirements: - sysroot_linux-64 >=2.17 host: # Libraries necessary to build. Keep sorted! - - abseil-cpp + - libabseil - boost-cpp - cuda-nvml-dev {{ cuda_version }}.* - cudatoolkit {{ cuda_version }}.* @@ -92,7 +92,7 @@ outputs: - sysroot_linux-64 2.17 host: # Any libraries with weak run_exports need to go here to be added to the run. Keep sorted! - - abseil-cpp # Needed for transitive run_exports from grpc-cpp. Does not need a version + - libabseil # Needed for transitive run_exports from grpc-cpp. Does not need a version - boost-cpp - flatbuffers 2.0.* - gflags @@ -127,7 +127,7 @@ outputs: host: # Only should need libmrc and python. Keep sorted! - {{ pin_subpackage('libmrc', exact=True) }} - - abseil-cpp # mrc does not require abseil at build time. See https://github.com/conda-forge/arrow-cpp-feedstock/issues/814 + - libabseil # mrc does not require abseil at build time. See https://github.com/conda-forge/arrow-cpp-feedstock/issues/814 - python {{ python }} run: - {{ pin_subpackage('libmrc', exact=True) }} @@ -146,7 +146,7 @@ outputs: - numpy - nvtx - pytest - - cuml {{ rapids_version }}.* # Ensure we can install cuml. This can cause issues solving abseil-cpp + - cuml {{ rapids_version }}.* # Ensure we can install cuml. This can cause issues solving libabseil about: home: https://www.nvidia.com/ diff --git a/docs/quickstart/CMakeLists.txt b/docs/quickstart/CMakeLists.txt index 98271b9d6..d577e2960 100644 --- a/docs/quickstart/CMakeLists.txt +++ b/docs/quickstart/CMakeLists.txt @@ -28,7 +28,7 @@ list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../external/utili include(morpheus_utils/load) project(mrc-quickstart - VERSION 23.03 + VERSION 23.07 LANGUAGES C CXX ) From 162eca3d0ff0c887e6477b2347b1732c6111e845 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 4 Apr 2023 17:16:22 +0000 Subject: [PATCH 8/9] . --- .tmp/logs | 966 ++++++++++++++++++++++++++++++ CMakeLists.txt | 2 +- ci/conda/environments/dev_env.yml | 4 +- 3 files changed, 969 insertions(+), 3 deletions(-) create mode 100644 .tmp/logs diff --git a/.tmp/logs b/.tmp/logs new file mode 100644 index 000000000..8c0cbb883 --- /dev/null +++ b/.tmp/logs @@ -0,0 +1,966 @@ +CUDA : 11.8.0 +PYTHON_VER : 3.8 + +===Begin Env=== +SHELL=/bin/bash +NVIDIA_VISIBLE_DEVICES=all +COLORTERM=truecolor +GCC_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib +TERM_PROGRAM_VERSION=1.75.1 +CONDA_EXE=/opt/conda/bin/conda +_CE_M= +build_alias=x86_64-conda-linux-gnu +CMAKE_ARGS=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -DCUDAToolkit_ROOT=/usr/local/cuda -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda +HOSTNAME=charris-dt +CMAKE_ARGS_CONDA_NVCC_BACKUP=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip +GPROF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gprof +CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu +DOTNET_ROOT=/usr/local/dotnet/current +_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu +SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-c4c425e4-154f-4f11-bd81-2cf391b574ad.sock +STRINGS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strings +CPP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cpp +CFLAGS_CONDA_NVCC_BACKUP=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include +HOST_MRC_ROOT=/home/charris/dev/cyberdev/mrc +CUDA=11.8.0 +CUDA_PATH_CONDA_NVCC_BACKUP=/usr/local/cuda +REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-c4c425e4-154f-4f11-bd81-2cf391b574ad.sock +MRC_ROOT=/workspaces/mrc +CMAKE_CUDA_COMPILER_LAUNCHER=ccache +XML_CATALOG_FILES=file:///home/coder/.conda/envs/mrc/etc/xml/catalog file:///etc/xml/catalog +CPPFLAGS_CONDA_NVCC_BACKUP=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/coder/.conda/envs/mrc/include +PWD=/workspaces/mrc +GSETTINGS_SCHEMA_DIR=/home/coder/.conda/envs/mrc/share/glib-2.0/schemas +CONDA_PREFIX=/home/coder/.conda/envs/mrc +CCACHE_DIR=/workspaces/mrc/.cache/ccache +NVIDIA_DRIVER_CAPABILITIES=all +GSETTINGS_SCHEMA_DIR_CONDA_BACKUP= +CXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ +CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +VSCODE_GIT_ASKPASS_NODE=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/node +CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu +DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include +y=\033[0;33m +x=\033[0m +r=\033[0;31m +g=\033[0;32m +e=\033[0;90m +LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +HOME=/home/coder +b=\033[0;36m +LANG=en_US.UTF-8 +CONDA_COMMAND=mambabuild +LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: +DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include +MAMBA_NO_BANNER=1 +REMOTE_CONTAINERS=true +CUDA_VERSION=11.8.0 +CXX_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ +ELFEDIT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-elfedit +CONDA_PROMPT_MODIFIER=(mrc) +GIT_ASKPASS=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/extensions/git/dist/askpass.sh +CMAKE_PREFIX_PATH=/home/coder/.conda/envs/mrc:/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot/usr +CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +LD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld +CMAKE_CXX_COMPILER_LAUNCHER=ccache +READELF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-readelf +GXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-g++ +PYTHON_VER=3.8 +VSCODE_GIT_ASKPASS_EXTRA_ARGS= +GCC_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar +LESSCLOSE=/usr/bin/lesspipe %s %s +ADDR2LINE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-addr2line +VAULT_HOST=https://vault.ops.k8s.rapids.ai +TERM=xterm-256color +_CE_CONDA= +SIZE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-size +GCC_NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-nm +HOST=x86_64-conda-linux-gnu +REMOTE_CONTAINERS_SOCKETS=["/tmp/vscode-ssh-auth-c4c425e4-154f-4f11-bd81-2cf391b574ad.sock","/tmp/.X11-unix/X1","/home/coder/.gnupg/S.gpg-agent"] +LESSOPEN=| /usr/bin/lesspipe %s +CC_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc +USER=coder +LIBRARY_PATH=/usr/local/cuda/lib64/stubs +CUDA_PATH=/usr/local/cuda +VSCODE_GIT_IPC_HANDLE=/tmp/vscode-git-43aebffbc1.sock +CONDA_SHLVL=1 +AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar +AS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-as +BASH_ENV_ETC_PROFILE=/etc/bash.bash_env +DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem /home/coder/.conda/envs/mrc/include +CUDA_VERSION_MINOR=8 +host_alias=x86_64-conda-linux-gnu +DISPLAY=:1 +CUDA_VERSION_PATCH=0 +SHLVL=2 +NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-nm +BASH_ENV=/etc/bash.bash_env +GCC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc +GIT_EDITOR=code --wait +NVARCH=x86_64 +CUDA_HOME_CONDA_NVCC_BACKUP=/usr/local/cuda +PROMPT_DIRTRIM=4 +PARALLEL_LEVEL=64 +GIT_VERSION=v23.01.00a +LD_GOLD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld.gold +CONDA_PYTHON_EXE=/opt/conda/bin/python +LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 +CCACHE_NOHASHDIR=1 +CMAKE_C_COMPILER_LAUNCHER=ccache +CONDA_DEFAULT_ENV=mrc +OBJCOPY=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objcopy +CXXFLAGS_CONDA_NVCC_BACKUP=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include +DEFAULT_CONDA_ENV=mrc +SCCACHE_S3_NO_CREDENTIALS=true +CUDA_VERSION_MAJOR=11 +VSCODE_GIT_ASKPASS_MAIN=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/extensions/git/dist/askpass-main.js +STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip +CUDA_HOME=/usr/local/cuda +GCC_COLORS=error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01 +OBJDUMP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objdump +BROWSER=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/bin/helpers/browser.sh +PATH=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/bin/remote-cli:/home/coder/.conda/envs/mrc/bin:/opt/conda/condabin:/usr/local/dotnet/current:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:/workspaces/mrc/.devcontainer/bin:/home/coder/.local/bin:/home/coder/.dotnet/tools:/home/coder/.dotnet/tools +CC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc +CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +CXXFILT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++filt +BUILD=x86_64-conda-linux-gnu +CMAKE_GENERATOR=Ninja +RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib +REMOTE_CONTAINERS_DISPLAY_SOCK=/tmp/.X11-unix/X1 +CONDA_BUILD_SYSROOT=/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot +MRC_CACHE_DIR=/workspaces/mrc/.cache +OLDPWD=/workspaces/mrc/build +TERM_PROGRAM=vscode +VSCODE_IPC_HOOK_CLI=/tmp/vscode-ipc-826fda56-a3bb-4cc4-9cf2-7f21f42d0aa3.sock +_=/usr/bin/env +===End Env=== +===Running conda-build for libmrc=== +++ conda mambabuild --use-local --build-id-pat '{n}-{v}' --variants '{python: 3.8}' -c rapidsai -c nvidia -c conda-forge -c main ci/conda/recipes/libmrc +No numpy version specified in conda_build_config.yaml. Falling back to default numpy value of 1.21 +WARNING:conda_build.metadata:No numpy version specified in conda_build_config.yaml. Falling back to default numpy value of 1.21 +Cloning into '/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work'... +done. +Your branch is up to date with 'origin/_conda_cache_origin_head'. +Submodule 'morpheus_utils' (https://github.com/nv-morpheus/utilities.git) registered for path 'external/utilities' +Cloning into '/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work/external/utilities'... +From https://github.com/nv-morpheus/utilities + * branch 846c3a72f1ba4b867476c318b6e719bcf9423ffd -> FETCH_HEAD +Submodule path 'external/utilities': checked out '846c3a72f1ba4b867476c318b6e719bcf9423ffd' +commit 8c10908a1bc0311b0b4f821c54d0db83ff2b3bc1 +Author: Christopher Harris +Date: Tue Apr 4 16:52:25 2023 +0000 + + conda-build works for rmm 23.02 + +v23.01.00a-71-g8c10908a + +On branch _conda_cache_origin_head +Your branch is up to date with 'origin/_conda_cache_origin_head'. + +nothing to commit, working tree clean + +Updating build index: /home/coder/.conda/envs/mrc/conda-bld + +checkout: 'HEAD' +==> /home/coder/.conda/envs/mrc/bin/git log -n1 <== + +==> /home/coder/.conda/envs/mrc/bin/git describe --tags --dirty <== + +==> /home/coder/.conda/envs/mrc/bin/git status <== + +Adding in variants from internal_defaults +INFO:conda_build.variants:Adding in variants from internal_defaults +Adding in variants from /workspaces/mrc/ci/conda/recipes/libmrc/conda_build_config.yaml +INFO:conda_build.variants:Adding in variants from /workspaces/mrc/ci/conda/recipes/libmrc/conda_build_config.yaml +Adding in variants from argument_variants +INFO:conda_build.variants:Adding in variants from argument_variants +Attempting to finalize metadata for libmrc +/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/environ.py:499: UserWarning: The environment variable 'CMAKE_CUDA_ARCHITECTURES' is being passed through with value 'ALL'. If you are splitting build and test phases with --no-test, please ensure that this value is also set similarly at test time. + warnings.warn( +/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/environ.py:499: UserWarning: The environment variable 'MRC_CACHE_DIR' is being passed through with value '/workspaces/mrc/.cache'. If you are splitting build and test phases with --no-test, please ensure that this value is also set similarly at test time. + warnings.warn( +/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/environ.py:499: UserWarning: The environment variable 'PARALLEL_LEVEL' is being passed through with value '64'. If you are splitting build and test phases with --no-test, please ensure that this value is also set similarly at test time. + warnings.warn( +INFO:conda_build.metadata:Attempting to finalize metadata for libmrc +warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null +warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/c9ddbd6b.json" was modified by another program +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/b121c3e7.json" was modified by another program +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/497deca9.json" was modified by another program +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/09cdf8bf.json" was modified by another program +warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null +warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/47929eba.json" was modified by another program +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/3e39a7aa.json" was modified by another program +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/2ce54b42.json" was modified by another program +warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/4ea078d6.json" was modified by another program +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Attempting to finalize metadata for mrc +INFO:conda_build.metadata:Attempting to finalize metadata for mrc +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +BUILD START: ['libmrc-23.01.00a-cuda_11.8_h6c4977a_71.tar.bz2', 'mrc-23.01.00a-cuda_11.8_py38_h86cc64d_71.tar.bz2'] +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld + +## Package Plan ## + + environment location: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho + + +The following NEW packages will be INSTALLED: + + _libgcc_mutex: 0.1-conda_forge conda-forge + _openmp_mutex: 4.5-2_gnu conda-forge + boost-cpp: 1.74.0-h75c5d50_8 conda-forge + bzip2: 1.0.8-h7f98852_4 conda-forge + c-ares: 1.18.1-h7f98852_0 conda-forge + ca-certificates: 2022.12.7-ha878542_0 conda-forge + cmake: 3.26.2-h077f3f9_0 conda-forge + cuda-nvml-dev: 11.8.86-0 nvidia + cudatoolkit: 11.8.0-h37601d7_11 conda-forge + cython: 0.29.33-py38h8dc9893_0 conda-forge + distro: 1.8.0-pyhd8ed1ab_0 conda-forge + doxygen: 1.9.2-hb166930_0 conda-forge + expat: 2.5.0-hcb278e6_1 conda-forge + flatbuffers: 2.0.8-hcb278e6_1 conda-forge + gflags: 2.2.2-he1b5a44_1004 conda-forge + glog: 0.6.0-h6f12383_0 conda-forge + gmock: 1.10.0-h4bd325d_7 conda-forge + grpc-cpp: 1.46.4-hc2bec63_7 conda-forge + gtest: 1.10.0-h4bd325d_7 conda-forge + icu: 70.1-h27087fc_0 conda-forge + keyutils: 1.6.1-h166bdaf_0 conda-forge + krb5: 1.20.1-h81ceb04_0 conda-forge + ld_impl_linux-64: 2.40-h41732ed_0 conda-forge + libabseil: 20220623.0-cxx17_h05df665_6 conda-forge + libcurl: 7.88.1-hdc1c0ab_1 conda-forge + libedit: 3.1.20191231-he28a2e2_2 conda-forge + libev: 4.33-h516909a_1 conda-forge + libexpat: 2.5.0-hcb278e6_1 conda-forge + libffi: 3.4.2-h7f98852_5 conda-forge + libgcc-ng: 12.2.0-h65d4601_19 conda-forge + libgomp: 12.2.0-h65d4601_19 conda-forge + libhwloc: 2.5.0-h6746aa3_0 conda-forge + libiconv: 1.17-h166bdaf_0 conda-forge + libnghttp2: 1.52.0-h61bc06f_0 conda-forge + libnsl: 2.0.0-h7f98852_0 conda-forge + libprotobuf: 3.20.2-h6239696_0 conda-forge + librmm: 22.08.00-cuda11_gd212232c_0 rapidsai + libsqlite: 3.40.0-h753d276_0 conda-forge + libssh2: 1.10.0-hf14f497_3 conda-forge + libstdcxx-ng: 12.2.0-h46fd767_19 conda-forge + libuuid: 2.38.1-h0b41bf4_0 conda-forge + libuv: 1.44.2-h166bdaf_0 conda-forge + libxml2: 2.10.3-hca2bb57_4 conda-forge + libzlib: 1.2.13-h166bdaf_4 conda-forge + make: 4.3-hd18ef5c_1 conda-forge + ncurses: 6.3-h27087fc_1 conda-forge + nlohmann_json: 3.9.1-h9c3ff4c_1 conda-forge + openssl: 3.1.0-h0b41bf4_0 conda-forge + packaging: 23.0-pyhd8ed1ab_0 conda-forge + pip: 23.0.1-pyhd8ed1ab_0 conda-forge + pybind11-abi: 4-hd8ed1ab_3 conda-forge + pybind11-stubgen: 0.10.5-pyhd8ed1ab_0 conda-forge + python: 3.8.16-he550d4f_1_cpython conda-forge + python_abi: 3.8-3_cp38 conda-forge + re2: 2022.06.01-h27087fc_1 conda-forge + readline: 8.2-h8228510_1 conda-forge + rhash: 1.4.3-h166bdaf_0 conda-forge + scikit-build: 0.16.7-pyh56297ac_0 conda-forge + setuptools: 67.6.1-pyhd8ed1ab_0 conda-forge + spdlog: 1.8.5-h4bd325d_1 conda-forge + tk: 8.6.12-h27826a3_0 conda-forge + ucx: 1.13.1-h538f049_1 conda-forge + wheel: 0.40.0-pyhd8ed1ab_0 conda-forge + xz: 5.2.6-h166bdaf_0 conda-forge + zlib: 1.2.13-h166bdaf_4 conda-forge + zstd: 1.5.2-h3eb15da_6 conda-forge + +Preparing transaction: ...working... done +Verifying transaction: ...working... WARNING conda.core.path_actions:verify(1093): Unable to create environments file. Path not writable. + environment location: /home/coder/.conda/environments.txt + +done +Executing transaction: ...working... By downloading and using the CUDA Toolkit conda packages, you accept the terms and conditions of the CUDA End User License Agreement (EULA): https://docs.nvidia.com/cuda/eula/index.html + +done +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld +Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld + +## Package Plan ## + + environment location: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env + + +The following NEW packages will be INSTALLED: + + _libgcc_mutex: 0.1-conda_forge conda-forge + _openmp_mutex: 4.5-2_gnu conda-forge + _sysroot_linux-64_curr_repodata_hack: 3-h5bd9786_13 conda-forge + autoconf: 2.71-pl5321h2b4cb7a_1 conda-forge + binutils_impl_linux-64: 2.36.1-h193b22a_2 conda-forge + binutils_linux-64: 2.36-hf3e587d_10 conda-forge + bzip2: 1.0.8-h7f98852_4 conda-forge + c-ares: 1.18.1-h7f98852_0 conda-forge + ca-certificates: 2022.12.7-ha878542_0 conda-forge + ccache: 4.8-hfcdc2af_0 conda-forge + cmake: 3.26.2-h077f3f9_0 conda-forge + expat: 2.5.0-hcb278e6_1 conda-forge + gcc_impl_linux-64: 11.2.0-h82a94d6_16 conda-forge + gcc_linux-64: 11.2.0-h39a9532_10 conda-forge + gxx_impl_linux-64: 11.2.0-h82a94d6_16 conda-forge + gxx_linux-64: 11.2.0-hacbe6df_10 conda-forge + kernel-headers_linux-64: 3.10.0-h4a8ded7_13 conda-forge + keyutils: 1.6.1-h166bdaf_0 conda-forge + krb5: 1.20.1-h81ceb04_0 conda-forge + ld_impl_linux-64: 2.36.1-hea4e1c9_2 conda-forge + libcurl: 7.88.1-hdc1c0ab_1 conda-forge + libedit: 3.1.20191231-he28a2e2_2 conda-forge + libev: 4.33-h516909a_1 conda-forge + libexpat: 2.5.0-hcb278e6_1 conda-forge + libgcc-devel_linux-64: 11.2.0-h0952999_16 conda-forge + libgcc-ng: 12.2.0-h65d4601_19 conda-forge + libgfortran-ng: 12.2.0-h69a702a_19 conda-forge + libgfortran5: 12.2.0-h337968e_19 conda-forge + libgomp: 12.2.0-h65d4601_19 conda-forge + libhiredis: 1.0.2-h2cc385e_0 conda-forge + libnghttp2: 1.52.0-h61bc06f_0 conda-forge + libnsl: 2.0.0-h7f98852_0 conda-forge + libsanitizer: 11.2.0-he4da1e4_16 conda-forge + libssh2: 1.10.0-hf14f497_3 conda-forge + libstdcxx-devel_linux-64: 11.2.0-h0952999_16 conda-forge + libstdcxx-ng: 12.2.0-h46fd767_19 conda-forge + libtool: 2.4.7-h27087fc_0 conda-forge + libuv: 1.44.2-h166bdaf_0 conda-forge + libzlib: 1.2.13-h166bdaf_4 conda-forge + m4: 1.4.18-h516909a_1001 conda-forge + ncurses: 6.3-h27087fc_1 conda-forge + ninja: 1.11.1-h924138e_0 conda-forge + numactl-libs-cos7-x86_64: 2.0.12-h9b0a68f_1105 conda-forge + nvcc_linux-64: 11.8-ha67cc55_22 conda-forge + openssl: 3.1.0-h0b41bf4_0 conda-forge + perl: 5.32.1-2_h7f98852_perl5 conda-forge + pkg-config: 0.29.2-h36c2ea0_1008 conda-forge + rhash: 1.4.3-h166bdaf_0 conda-forge + sed: 4.8-he412f7d_0 conda-forge + sysroot_linux-64: 2.17-h4a8ded7_13 conda-forge + xz: 5.2.6-h166bdaf_0 conda-forge + zlib: 1.2.13-h166bdaf_4 conda-forge + zstd: 1.5.2-h3eb15da_6 conda-forge + +Preparing transaction: ...working... done +Verifying transaction: ...working... WARNING conda.core.path_actions:verify(1093): Unable to create environments file. Path not writable. + environment location: /home/coder/.conda/environments.txt + +done +Executing transaction: ...working... WARNING conda.core.envs_manager:register_env(49): Unable to register environment. Path not writable or missing. + environment location: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env + registry file: /home/coder/.conda/environments.txt +done +source tree in: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work +export PREFIX=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho +export BUILD_PREFIX=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env +export SRC_DIR=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work +INFO: activate-binutils_linux-64.sh made the following environmental changes: ++ADDR2LINE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-addr2line ++AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar ++AS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-as ++CXXFILT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++filt ++ELFEDIT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-elfedit ++GPROF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gprof ++LD_GOLD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld.gold ++LD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld ++NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-nm ++OBJCOPY=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objcopy ++OBJDUMP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objdump ++RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib ++READELF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-readelf ++SIZE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-size ++STRINGS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strings ++STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip +INFO: activate-gcc_linux-64.sh made the following environmental changes: ++build_alias=x86_64-conda-linux-gnu ++CC_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc ++CC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc ++CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +-CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include ++CMAKE_ARGS=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin ++CMAKE_PREFIX_PATH=$PREFIX:/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot/usr ++CONDA_BUILD_SYSROOT=/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot ++_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu ++CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu ++CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu ++CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include ++CPP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cpp ++DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix ++DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include ++GCC_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar ++GCC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc ++GCC_NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-nm ++GCC_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib ++host_alias=x86_64-conda-linux-gnu ++HOST=x86_64-conda-linux-gnu ++LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +-LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +INFO: activate-gxx_linux-64.sh made the following environmental changes: ++CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +-CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include ++CXX_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ ++CXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ ++DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix ++GXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-g++ +INFO: deactivate-gxx_linux-64.sh made the following environmental changes: +-CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include ++CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +-CXX_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ +-CXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ +-DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix +-GXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-g++ +INFO: deactivate-gcc_linux-64.sh made the following environmental changes: +-build_alias=x86_64-conda-linux-gnu +-CC_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc +-CC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc +-CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include ++CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +-CMAKE_ARGS=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin +-CMAKE_PREFIX_PATH=$PREFIX:/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot/usr +-CONDA_BUILD_SYSROOT=/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot +-_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu +-CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu +-CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu +-CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include +-CPP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cpp +-DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix +-DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include +-GCC_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar +-GCC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc +-GCC_NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-nm +-GCC_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib +-host_alias=x86_64-conda-linux-gnu +-HOST=x86_64-conda-linux-gnu +-LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib ++LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +INFO: deactivate-binutils_linux-64.sh made the following environmental changes: +-ADDR2LINE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-addr2line +-AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar +-AS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-as +-CXXFILT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++filt +-ELFEDIT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-elfedit +-GPROF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gprof +-LD_GOLD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld.gold +-LD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld +-NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-nm +-OBJCOPY=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objcopy +-OBJDUMP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objdump +-RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib +-READELF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-readelf +-SIZE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-size +-STRINGS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strings +-STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip +INFO: activate-binutils_linux-64.sh made the following environmental changes: ++ADDR2LINE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-addr2line ++AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar ++AS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-as ++CXXFILT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++filt ++ELFEDIT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-elfedit ++GPROF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gprof ++LD_GOLD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld.gold ++LD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld ++NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-nm ++OBJCOPY=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objcopy ++OBJDUMP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objdump ++RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib ++READELF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-readelf ++SIZE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-size ++STRINGS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strings ++STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip +INFO: activate-gcc_linux-64.sh made the following environmental changes: ++build_alias=x86_64-conda-linux-gnu ++CC_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cc ++CC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cc ++CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +-CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include ++CMAKE_ARGS=-DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin ++CMAKE_PREFIX_PATH=$PREFIX:$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot/usr ++CONDA_BUILD_SYSROOT=$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot ++_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu ++CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu ++CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu ++CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include ++CPP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cpp ++DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix ++DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include ++GCC_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar ++GCC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc ++GCC_NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-nm ++GCC_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib ++host_alias=x86_64-conda-linux-gnu ++HOST=x86_64-conda-linux-gnu ++LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +-LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +INFO: activate-gxx_linux-64.sh made the following environmental changes: ++CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +-CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include ++CXX_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ ++CXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ ++DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix ++GXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ +CC : $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc +CXX : $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ +CUDAHOSTCXX : $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ +CUDA : +CMAKE_ARGS : -DUCX_VERSION=1.13 -DMRC_RAPIDS_VERSION=22.08 -DPython_EXECUTABLE=$PREFIX/bin/python -DCMAKE_CUDA_ARCHITECTURES=ALL -DMRC_BUILD_PYTHON=ON -DMRC_USE_CCACHE=OFF -DMRC_USE_CONDA=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_MESSAGE_CONTEXT_SHOW=ON -DMRC_CACHE_DIR=/workspaces/mrc/.cache -DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=/usr/local/cuda;$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -DCUDAToolkit_ROOT=/usr/local/cuda -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda +========Begin Env======== +GCC_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib +CONDA_EXE=/home/coder/.conda/envs/mrc/bin/conda +_CE_M= +PKG_BUILD_STRING=placeholder +PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig +build_alias=x86_64-conda-linux-gnu +PYTHONNOUSERSITE=1 +CONDA_BACKUP_LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +CMAKE_ARGS=-DUCX_VERSION=1.13 -DMRC_RAPIDS_VERSION=22.08 -DPython_EXECUTABLE=$PREFIX/bin/python -DCMAKE_CUDA_ARCHITECTURES=ALL -DMRC_BUILD_PYTHON=ON -DMRC_USE_CCACHE=OFF -DMRC_USE_CONDA=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_MESSAGE_CONTEXT_SHOW=ON -DMRC_CACHE_DIR=/workspaces/mrc/.cache -DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=/usr/local/cuda;$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -DCUDAToolkit_ROOT=/usr/local/cuda -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda +CMAKE_ARGS_CONDA_NVCC_BACKUP=-DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin +PREFIX=$PREFIX +pin_run_as_build=OrderedDict([('python', OrderedDict([('min_pin', 'x.x'), ('max_pin', 'x.x')])), ('r-base', OrderedDict([('min_pin', 'x.x'), ('max_pin', 'x.x')])), ('boost-cpp', {'max_pin': 'x.x'})]) +GPROF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gprof +CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu +_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu +CONDA_PERL=5.26 +STDLIB_DIR=$PREFIX/lib/python3.8 +STRINGS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strings +CPP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cpp +CONDA_NPY=121 +SHLIB_EXT=.so +PY3K=1 +CFLAGS_CONDA_NVCC_BACKUP=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +CUDA_PATH_CONDA_NVCC_BACKUP=/usr/local/cuda +CPU_COUNT=64 +CONDA_BACKUP_BUILD=x86_64-conda-linux-gnu +DIRTY= +CONDA_PY=38 +cpu_optimization_target=nocona +build_platform=linux-64 +XML_CATALOG_FILES=file://$PREFIX/etc/xml/catalog file:///etc/xml/catalog +libabseil=20220623.0 +CPPFLAGS_CONDA_NVCC_BACKUP=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include +PKG_NAME=libmrc-split +PWD=$SRC_DIR +glog=0.6 +ucx=1.13 +GIT_DESCRIBE_NUMBER=71 +cuda_compiler=nvcc +CONDA_PREFIX=$BUILD_PREFIX +PIP_NO_BUILD_ISOLATION=False +PIP_NO_INDEX=True +CXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ +CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -isystem /usr/local/cuda/include +PKG_BUILDNUM=71 +LUA_VER=5 +CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu +DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix +fortran_compiler=gfortran +CCACHE_DEBUG=1 +R_VER=3.5 +LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib +HOME=/home/coder +LANG=en_US.UTF-8 +cxx_compiler=gxx +DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix +SP_DIR=$PREFIX/lib/python3.8/site-packages +CONDA_BUILD=1 +CXX_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ +CONDA_BACKUP_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +PIP_NO_DEPENDENCIES=True +ELFEDIT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-elfedit +CONDA_PROMPT_MODIFIER=($BUILD_PREFIX) +CMAKE_PREFIX_PATH=$PREFIX:$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot/usr +CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include -isystem /usr/local/cuda/include +target_platform=linux-64 +LD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld +cuda_compiler_version=11.8 +PKG_HASH=1234567 +CONDA_LUA=5 +zip_keys=[['rapids_version', 'libabseil', 'grpc_cpp', 'ucx', 'libprotobuf']] +CCACHE_BASEDIR=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a +PIP_CACHE_DIR=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/pip_cache +READELF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-readelf +CUDAHOSTCXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ +GXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ +CONDA_STACKED_3=true +RECIPE_DIR=/workspaces/mrc/ci/conda/recipes/libmrc +GCC_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar +ignore_build_only_deps={'numpy', 'python'} +gflags=2.2 +ADDR2LINE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-addr2line +CONDA_BACKUP_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +_CE_CONDA= +GCC_NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-nm +SIZE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-size +HOST=x86_64-conda-linux-gnu +boost_cpp=1.74.0 +CCACHE_SLOPPINESS=system_headers +GIT_DESCRIBE_TAG_PEP440=v23.01.00a.post71+8c10908a +CC_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cc +GIT_BUILD_STR=71_g8c10908a +SUBDIR=linux-64 +CCACHE_DEBUGDIR=$SRC_DIR/ccache_debug +PYTHON=$PREFIX/bin/python +CUDA_PATH=/usr/local/cuda +rapids_version=22.08 +CONDA_SHLVL=3 +PERL_VER=5.26 +PIP_IGNORE_INSTALLED=True +AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar +AS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-as +ARCH=64 +DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include +ROOT=/home/coder/.conda/envs/mrc +cxx_compiler_version=11.2 +host_alias=x86_64-conda-linux-gnu +DISPLAY=:1 +SHLVL=1 +GIT_DESCRIBE_HASH=g8c10908a +NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-nm +LD_RUN_PATH=$PREFIX/lib +SYS_PYTHON=/home/coder/.conda/envs/mrc/bin/python3.8 +GCC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc +CUDA_HOME_CONDA_NVCC_BACKUP=/usr/local/cuda +HTTPS_PROXY= +HTTP_PROXY= +PARALLEL_LEVEL=64 +CONDA_R=3.5 +CONDA_BUILD_STATE=BUILD +GIT_DESCRIBE_TAG=v23.01.00a +SRC_DIR=$SRC_DIR +LD_GOLD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld.gold +extend_keys={'ignore_build_only_deps', 'extend_keys', 'ignore_version', 'pin_run_as_build'} +CONDA_PYTHON_EXE=/home/coder/.conda/envs/mrc/bin/python +LD_LIBRARY_PATH=$BUILD_PREFIX/lib:$PREFIX/lib: +BUILD_PREFIX=$BUILD_PREFIX +NPY_DISTUTILS_APPEND_FLAGS=1 +CCACHE_NOHASHDIR=1 +GIT_FULL_HASH=8c10908a1bc0311b0b4f821c54d0db83ff2b3bc1 +SYS_PREFIX=/home/coder/.conda/envs/mrc +CONDA_DEFAULT_ENV=$BUILD_PREFIX +OBJCOPY=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objcopy +PKG_VERSION=23.01.00a +boost=1.74.0 +REQUESTS_CA_BUNDLE= +CXXFLAGS_CONDA_NVCC_BACKUP=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include +cran_mirror=https://cran.r-project.org +PY_VER=3.8 +STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip +CUDA_HOME=/usr/local/cuda +r_base=3.5 +OBJDUMP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objdump +PATH=$BUILD_PREFIX/bin:$PREFIX/bin:/home/coder/.conda/envs/mrc/condabin:$BUILD_PREFIX/bin:$PREFIX/bin:/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/bin/remote-cli:/home/coder/.conda/envs/mrc/bin:/opt/conda/condabin:/usr/local/dotnet/current:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:/workspaces/mrc/.devcontainer/bin:/home/coder/.local/bin:/home/coder/.dotnet/tools:/home/coder/.dotnet/tools +CC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc +CMake Deprecation Warning at build-conda/_deps/rapids-cmake-src/rapids-cmake/cmake/detail/policy.cmake:48 (message): + rapids-cmake policy [deprecated=23.02 removed=23.06]: Usage of `ALL` as + value for `CMAKE_CUDA_ARCHITECTURES` or the env variable `CUDAARCHS` has + been deprecated, use `RAPIDS` instead. You are currently requesting + rapids-cmake please upgrade to 23.02. +Call Stack (most recent call first): + build-conda/_deps/rapids-cmake-src/rapids-cmake/cuda/detail/architectures_policy.cmake:42 (rapids_cmake_policy) + build-conda/_deps/rapids-cmake-src/rapids-cmake/cuda/init_architectures.cmake:84 (rapids_cuda_architectures_policy) + external/utilities/cmake/morpheus_utils/environment_config/rapids_cmake/register_api.cmake:28 (rapids_cuda_init_architectures) + CMakeLists.txt:78 (morpheus_utils_initialize_cuda_arch) + + +CMake Warning at external/utilities/cmake/morpheus_utils/environment_config/ccache/register_api.cmake:122 (message): + The value for MRC_CACHE_DIR (/workspaces/mrc/.cache) is not contained in + any CMAKE_FIND_ROOT_PATH + (/usr/local/cuda;/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho;/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env/x86_64-conda-linux-gnu/sysroot). + This will result in cmake being unable to find any downloaded packages. + The cache path has been appended to the back of CMAKE_FIND_ROOT_PATH +Call Stack (most recent call first): + cmake/environment/init_ccache.cmake:20 (morpheus_utils_check_cache_path) + CMakeLists.txt:134 (include) + + +CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:4 (file): + file failed to open for reading (No such file or directory): + + /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work/_THRUST_VERSION_INCLUDE_DIR-NOTFOUND/thrust/version.h +Call Stack (most recent call first): + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) + build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) + external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) + cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) + CMakeLists.txt:145 (include) + + +CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:11 (math): + math cannot parse the expression: " / 100000": syntax error, unexpected + exp_DIVIDE (2). +Call Stack (most recent call first): + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) + build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) + external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) + cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) + CMakeLists.txt:145 (include) + + +CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:12 (math): + math cannot parse the expression: "( / 100) % 1000": syntax error, + unexpected exp_DIVIDE (3). +Call Stack (most recent call first): + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) + build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) + external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) + cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) + CMakeLists.txt:145 (include) + + +CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:13 (math): + math cannot parse the expression: " % 100": syntax error, unexpected + exp_MOD (2). +Call Stack (most recent call first): + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) + /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) + /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) + build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) + external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) + cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) + CMakeLists.txt:145 (include) + + +CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -isystem /usr/local/cuda/include +CXXFILT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++filt +CMAKE_CUDA_ARCHITECTURES=ALL +BUILD=x86_64-conda-linux-gnu +grpc_cpp=1.46 +CONDA_PREFIX_1=/home/coder/.conda/envs/mrc +CONDA_PREFIX_2=$PREFIX +c_compiler_version=11.2 +CMAKE_GENERATOR=Ninja +RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib +CONDA_BUILD_SYSROOT=$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot +NPY_VER=1.21 +c_compiler=gcc +MRC_CACHE_DIR=/workspaces/mrc/.cache +CUDAFLAGS=-isystem $BUILD_PREFIX/include -isystem $PREFIX/include +libprotobuf=3.20 +_=/usr/bin/env +========End Env======== +PYTHON: $PREFIX/bin/python +which python: $PREFIX/bin/python +-- [mrc] Downloading RAPIDS CMake Version: 23.02 +-- [mrc] MRC_USE_CONDA is defined and CONDA environment ($BUILD_PREFIX) exists. +-- [mrc.rapids.cmake.support_conda_env] Conda build detected, CMAKE_PREFIX_PATH set to: $PREFIX;$BUILD_PREFIX;$SRC_DIR/cmake +-- [mrc] Prepending CONDA_PREFIX ($BUILD_PREFIX) to CMAKE_FIND_ROOT_PATH +-- [mrc] The C compiler identification is GNU 11.2.0 +-- [mrc] The CXX compiler identification is GNU 11.2.0 +-- [mrc] Detecting C compiler ABI info +-- [mrc] Detecting C compiler ABI info - done +-- [mrc] Check for working C compiler: $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc - skipped +-- [mrc] Detecting C compile features +-- [mrc] Detecting C compile features - done +-- [mrc] Detecting CXX compiler ABI info +-- [mrc] Detecting CXX compiler ABI info - done +-- [mrc] Check for working CXX compiler: $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ - skipped +-- [mrc] Detecting CXX compile features +-- [mrc] Detecting CXX compile features - done +-- [mrc] Setting CUDA host compiler to match CXX compiler: $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ +-- [mrc] The CUDA compiler identification is NVIDIA 11.8.89 +-- [mrc] Detecting CUDA compiler ABI info +-- [mrc] Detecting CUDA compiler ABI info - done +-- [mrc] Check for working CUDA compiler: $BUILD_PREFIX/bin/nvcc - skipped +-- [mrc] Detecting CUDA compile features +-- [mrc] Detecting CUDA compile features - done +-- [mrc.cache.cpm] Using CPM source cache: /workspaces/mrc/.cache/cpm +-- [mrc.cache.cpm] MORPHEUS_UTILS_RAPIDS_CPM_INIT_OVERRIDE:$SRC_DIR/cmake/rapids_cpm_package_overrides.json, is set and will be used. +-- [mrc.dep.rapids.find.package] Found CUDAToolkit: /usr/local/cuda/include (found version "11.8.89") +-- [mrc.dep.rapids.find.package] Performing Test CMAKE_HAVE_LIBC_PTHREAD +-- [mrc.dep.rapids.find.package] Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed +-- [mrc.dep.rapids.find.package] Looking for pthread_create in pthreads +-- [mrc.dep.rapids.find.package] Looking for pthread_create in pthreads - not found +-- [mrc.dep.rapids.find.package] Looking for pthread_create in pthread +-- [mrc.dep.rapids.find.package] Looking for pthread_create in pthread - found +-- [mrc.dep.rapids.find.package] Found Threads: TRUE +-- [mrc.dep.boost.rapids.cpm.find] CPM: using local package Boost@1.74.0 +-- [mrc.dep.ucx.rapids.cpm.find] CPM: using local package ucx@1.13.1 +-- [mrc.dep.hwloc] Found PkgConfig: $BUILD_PREFIX/bin/pkg-config (found version "0.29.2") +-- [mrc.dep.hwloc] Checking for module 'hwloc' +-- [mrc.dep.hwloc] Found hwloc, version 2.5.0 +-- [mrc.dep.hwloc] Found hwloc with pkg-config at: $PREFIX/lib +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::Thrust: (1.15.0.0) +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::Thrust > ALIASED_TARGET: _Thrust_Thrust +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::Thrust > INTERFACE_INCLUDE_DIRECTORIES: $PREFIX/include/rapids/thrust +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: Assembling target rmm::Thrust. Options: FROM_OPTIONS +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: Creating system cache options: (advanced=FALSE) +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: - Host Option=THRUST_HOST_SYSTEM Default=CPP Doc='Thrust host system.' +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: - Device Option=THRUST_DEVICE_SYSTEM Default=CUDA Doc='Thrust device system.' +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: Current option settings: +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: - THRUST_HOST_SYSTEM=CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: - THRUST_DEVICE_SYSTEM=CUDA +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: Generating CPP targets. +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP: (Thrust 1.15.0.0) +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP > ALIASED_TARGET: _Thrust_CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP > INTERFACE_LINK_LIBRARIES: Thrust::Thrust +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host: +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > ALIASED_TARGET: _Thrust_CPP_Host +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > INTERFACE_COMPILE_DEFINITIONS: THRUST_HOST_SYSTEM=THRUST_HOST_SYSTEM_CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > INTERFACE_LINK_LIBRARIES: Thrust::CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > INTERFACE_THRUST_HOST: CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device: +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > ALIASED_TARGET: _Thrust_CPP_Device +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > INTERFACE_COMPILE_DEFINITIONS: THRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > INTERFACE_LINK_LIBRARIES: Thrust::CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > INTERFACE_THRUST_DEVICE: CPP +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: Searching for CUB REQUIRED +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: Setting CUB target to CUB::CUB +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: CUB::CUB: (1.15.0.0) +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: CUB::CUB > ALIASED_TARGET: _CUB_CUB +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: CUB::CUB > INTERFACE_INCLUDE_DIRECTORIES: $PREFIX/include/rapids/thrust/dependencies +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA: (CUB 1.15.0.0) +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA > ALIASED_TARGET: _Thrust_CUDA +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA > INTERFACE_LINK_LIBRARIES: Thrust::Thrust;CUB::CUB +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device: +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > ALIASED_TARGET: _Thrust_CUDA_Device +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > INTERFACE_COMPILE_DEFINITIONS: THRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_CUDA +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > INTERFACE_LINK_LIBRARIES: Thrust::CUDA +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > INTERFACE_THRUST_DEVICE: CUDA +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: rmm::Thrust: (Thrust 1.15.0.0) +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: rmm::Thrust > IMPORTED: TRUE +-- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: rmm::Thrust > INTERFACE_LINK_LIBRARIES: Thrust::CPP::Host;Thrust::CUDA::Device +-- [mrc.dep.rmm.rapids.cpm.find] CPM: using local package rmm@23.02.0 +-- [mrc.dep.glog.rapids.cpm.find] CPM: using local package glog@0.6.0 +-- [mrc.dep.rapids.find.package] Found ZLIB: $PREFIX/lib/libz.so (found version "1.2.13") +-- [mrc.dep.rapids.find.package] Found Protobuf: $PREFIX/lib/libprotobuf.so;-lpthread (found version "3.20.2") +-- [mrc.dep.rapids.find.package] Found OpenSSL: $PREFIX/lib/libcrypto.so (found version "3.1.0") +-- [mrc.dep.rapids.find.package] Found c-ares: $PREFIX/lib/cmake/c-ares/c-ares-config.cmake (found version "1.18.1") +-- [mrc.dep.rapids.find.package] Check if compiler accepts -pthread +-- [mrc.dep.rapids.find.package] Check if compiler accepts -pthread - yes +-- [mrc.dep.rapids.find.package] Found RE2 via CMake. +-- [mrc.dep.rxcpp.rapids.cpm.find] Found Git: /home/coder/.conda/envs/mrc/bin/git (found version "2.40.0") +-- [mrc.dep.rxcpp.rapids.cpm.find] Found Boost: $PREFIX/lib/cmake/Boost-1.74.0/BoostConfig.cmake (found version "1.74.0") found components: fiber +-- [mrc.dep.rxcpp.rapids.cpm.find] RXCPP_DIR: /workspaces/mrc/.cache/cpm/rxcpp/b2d191b4c471273143046efec8f535a2cf41a228 +-- [mrc.dep.rxcpp.rapids.cpm.find] CPM: adding package rxcpp@4.1.1.2 (v4.1.1.2 at /workspaces/mrc/.cache/cpm/rxcpp/b2d191b4c471273143046efec8f535a2cf41a228) +-- [mrc.dep.rapids.find.package] Found nlohmann_json: $PREFIX/lib/cmake/nlohmann_json/nlohmann_jsonConfig.cmake (found version "3.9.1") +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB - Success +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_VISIBILITY +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_DEPRECATED_ATTR +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] The following OPTIONAL packages have been found: +[mrc.dep.prometheus_cpp.rapids.cpm.find] +[mrc.dep.prometheus_cpp.rapids.cpm.find] * ZLIB +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Protobuf +[mrc.dep.prometheus_cpp.rapids.cpm.find] * OpenSSL +[mrc.dep.prometheus_cpp.rapids.cpm.find] * c-ares +[mrc.dep.prometheus_cpp.rapids.cpm.find] * absl +[mrc.dep.prometheus_cpp.rapids.cpm.find] * re2 +[mrc.dep.prometheus_cpp.rapids.cpm.find] +[mrc.dep.prometheus_cpp.rapids.cpm.find] -- The following REQUIRED packages have been found: +[mrc.dep.prometheus_cpp.rapids.cpm.find] +[mrc.dep.prometheus_cpp.rapids.cpm.find] * CUDAToolkit +[mrc.dep.prometheus_cpp.rapids.cpm.find] * CUB +[mrc.dep.prometheus_cpp.rapids.cpm.find] * gflags (required version >= 2.2.2) +[mrc.dep.prometheus_cpp.rapids.cpm.find] * gRPC +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Git +[mrc.dep.prometheus_cpp.rapids.cpm.find] * boost_headers (required version == 1.74.0) +[mrc.dep.prometheus_cpp.rapids.cpm.find] * boost_fiber (required version == 1.74.0) +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Boost +[mrc.dep.prometheus_cpp.rapids.cpm.find] * nlohmann_json +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Threads +[mrc.dep.prometheus_cpp.rapids.cpm.find] +[mrc.dep.prometheus_cpp.rapids.cpm.find] -- The following features have been disabled: +[mrc.dep.prometheus_cpp.rapids.cpm.find] +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Pull, support for pulling metrics +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Push, support for pushing metrics to a push-gateway +[mrc.dep.prometheus_cpp.rapids.cpm.find] * Compression, support for zlib compression of metrics +[mrc.dep.prometheus_cpp.rapids.cpm.find] * pkg-config, generate pkg-config files +[mrc.dep.prometheus_cpp.rapids.cpm.find] * IYWU, include-what-you-use +[mrc.dep.prometheus_cpp.rapids.cpm.find] +-- [mrc.dep.prometheus_cpp.rapids.cpm.find] CPM: adding package prometheus-cpp@1.0.0 (v1.0.0 at /workspaces/mrc/.cache/cpm/prometheus-cpp/5f59dbe2f5075854833ecc704cfee74e44e94e30) +-- [mrc.dep.libcudacxx.rapids.cpm.libcudacxx.rapids.cpm.find] Found libcudacxx: /workspaces/mrc/.cache/cpm/libcudacxx/170abbc851988024261455166b581b55f418a0a1/lib/cmake/libcudacxx/libcudacxx-config.cmake (found version "1.9.1.0") +-- [mrc.dep.libcudacxx.rapids.cpm.libcudacxx.rapids.cpm.find] CPM: adding package libcudacxx@1.9.1 (branch/1.9.1 at /workspaces/mrc/.cache/cpm/libcudacxx/170abbc851988024261455166b581b55f418a0a1) +-- [mrc.compiler] Performing Test COMPILER_C_HAS_O0 +-- [mrc.compiler] Performing Test COMPILER_C_HAS_O0 - Success +-- [mrc.compiler] Performing Test COMPILER_CXX_HAS_O0 +-- [mrc.compiler] Performing Test COMPILER_CXX_HAS_O0 - Success +-- [mrc.python] Found Python3: $PREFIX/bin/python3.8 (found version "3.8.16") found components: Development Development.Module Development.Embed Interpreter missing components: NumPy +-- [mrc.python] Found Python: $PREFIX/bin/python (found version "3.8.16") found components: Development Development.Module Development.Embed Interpreter missing components: NumPy +-- [mrc.python.pybind11.rapids.cpm.find] pybind11 v2.8.1 +-- [mrc.python.pybind11.rapids.cpm.find] Performing Test HAS_FLTO +-- [mrc.python.pybind11.rapids.cpm.find] Performing Test HAS_FLTO - Success +-- [mrc.python.pybind11.rapids.cpm.find] CPM: adding package pybind11@2.8.1 (v2.8.1 at /workspaces/mrc/.cache/cpm/pybind11/4b2e65a3ce30c3ecd70e3ab0df9048c78baa92d7) +-- [mrc.python] Found Cython: $PREFIX/bin/cython +-- [mrc.python] Python3_EXECUTABLE (before find_package): $PREFIX/bin/python3.8 +-- [mrc.python] Python3_ROOT_DIR (before find_package): +-- [mrc.python] FIND_PYTHON_STRATEGY (before find_package): +-- [mrc.python] Python3_FOUND: TRUE +-- [mrc.python] Python3_EXECUTABLE: $PREFIX/bin/python3.8 +-- [mrc.python] Python3_INTERPRETER_ID: Python +-- [mrc.python] Python3_STDLIB: $PREFIX/lib/python3.8 +-- [mrc.python] Python3_STDARCH: $PREFIX/lib/python3.8 +-- [mrc.python] Python3_SITELIB: $PREFIX/lib/python3.8/site-packages +-- [mrc.python] Python3_SITEARCH: $PREFIX/lib/python3.8/site-packages +-- [mrc.python] Python3_SOABI: cpython-38-x86_64-linux-gnu +-- [mrc.python] Python3_INCLUDE_DIRS: $PREFIX/include/python3.8 +-- [mrc.python] Python3_LIBRARIES: $PREFIX/lib/libpython3.8.so +-- [mrc.python] Python3_LIBRARY_DIRS: $PREFIX/lib +-- [mrc.python] Python3_VERSION: 3.8.16 +-- [mrc.python] Python3_NumPy_FOUND: FALSE +-- [mrc.python] Python3_NumPy_INCLUDE_DIRS: _Python3_NumPy_INCLUDE_DIR-NOTFOUND +-- [mrc.python] Python3_NumPy_VERSION: +-- [mrc.python.package-mrc] Creating python package 'mrc' +-- [mrc.python] Found Python: $PREFIX/bin/python (found suitable version "3.8.16", minimum required is "3.8") found components: Development Interpreter Development.Module Development.Embed +-- [mrc.python.core.module-common] Adding Pybind11 Module: mrc.core.common +-- [mrc.python.core.module-executor] Adding Pybind11 Module: mrc.core.executor +-- [mrc.python.core.module-logging] Adding Pybind11 Module: mrc.core.logging +-- [mrc.python.core.module-node] Adding Pybind11 Module: mrc.core.node +-- [mrc.python.core.module-operators] Adding Pybind11 Module: mrc.core.operators +-- [mrc.python.core.module-options] Adding Pybind11 Module: mrc.core.options +-- [mrc.python.core.module-pipeline] Adding Pybind11 Module: mrc.core.pipeline +-- [mrc.python.core.module-plugins] Adding Pybind11 Module: mrc.core.plugins +-- [mrc.python.core.module-segment] Adding Pybind11 Module: mrc.core.segment +-- [mrc.python.core.module-subscriber] Adding Pybind11 Module: mrc.core.subscriber +-- [mrc.python.benchmarking.module-watchers] Adding Pybind11 Module: mrc.benchmarking.watchers +-- [mrc.python.tests.module-test_edges_cpp] Adding Pybind11 Module: mrc.tests.test_edges_cpp +-- [mrc.python.tests.module-sample_modules] Adding Pybind11 Module: mrc.tests.sample_modules +-- [mrc.python.tests.module-utils] Adding Pybind11 Module: mrc.tests.utils +-- [mrc.python] Finalizing python package 'mrc' +-- [mrc.python] Python package 'mrc' has been built but has not been installed. Use `$PREFIX/bin/python3.8 -m pip install $SRC_DIR/build-conda/python` to install the library manually +-- Configuring incomplete, errors occurred! +Traceback (most recent call last): + File "/home/coder/.conda/envs/mrc/bin/conda-mambabuild", line 10, in + sys.exit(main()) + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/boa/cli/mambabuild.py", line 256, in main + call_conda_build(action, config) + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/boa/cli/mambabuild.py", line 228, in call_conda_build + result = api.build( + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/api.py", line 180, in build + return build_tree( + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/build.py", line 3078, in build_tree + packages_from_this = build(metadata, stats, + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/build.py", line 2198, in build + utils.check_call_env(cmd, env=env, rewrite_stdout_env=rewrite_env, + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/utils.py", line 451, in check_call_env + return _func_defaulting_env_to_os_environ("call", *popenargs, **kwargs) + File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/utils.py", line 427, in _func_defaulting_env_to_os_environ + raise subprocess.CalledProcessError(proc.returncode, _args) +subprocess.CalledProcessError: Command '['/bin/bash', '-o', 'errexit', '/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work/conda_build.sh']' returned non-zero exit status 1. diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a070e395..45a080fe7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,7 +63,7 @@ list(PREPEND CMAKE_MODULE_PATH "${MRC_CMAKE_MODULE_PATH_EXTENSIONS}") list(PREPEND CMAKE_PREFIX_PATH "${MRC_CMAKE_PREFIX_PATH_EXTENSIONS}") # Load morpheus utils and update CMake paths -set(MORPHEUS_UTILS_RAPIDS_CMAKE_VERSION ${MRC_RAPIDS_VERSION}) +set(MORPHEUS_UTILS_RAPIDS_VERSION ${MRC_RAPIDS_VERSION}) set(MORPHEUS_UTILS_RAPIDS_CPM_INIT_OVERRIDE "${CMAKE_CURRENT_SOURCE_DIR}/cmake/rapids_cpm_package_overrides.json") include(morpheus_utils/load) diff --git a/ci/conda/environments/dev_env.yml b/ci/conda/environments/dev_env.yml index 9af91f9b9..c0d3e590f 100644 --- a/ci/conda/environments/dev_env.yml +++ b/ci/conda/environments/dev_env.yml @@ -23,14 +23,14 @@ dependencies: - glog=0.6 - gmock=1.10 - graphviz=3.0 - - grpc-cpp=1.46 + - grpc-cpp=1.48 - gtest=1.10 - gxx_linux-64=11.2 - isort - jinja2=3.0 - lcov=1.15 - libhwloc=2.5 - - libprotobuf=3.20 + - libprotobuf=3.21 - librmm=23.02 - libtool - ninja=1.10 From 7f1a3d092c089058ca740988c29507ed39cfb2a9 Mon Sep 17 00:00:00 2001 From: Christopher Harris Date: Tue, 4 Apr 2023 18:45:45 +0000 Subject: [PATCH 9/9] . --- .tmp/logs | 966 ------------------------------------------------------ 1 file changed, 966 deletions(-) delete mode 100644 .tmp/logs diff --git a/.tmp/logs b/.tmp/logs deleted file mode 100644 index 8c0cbb883..000000000 --- a/.tmp/logs +++ /dev/null @@ -1,966 +0,0 @@ -CUDA : 11.8.0 -PYTHON_VER : 3.8 - -===Begin Env=== -SHELL=/bin/bash -NVIDIA_VISIBLE_DEVICES=all -COLORTERM=truecolor -GCC_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -TERM_PROGRAM_VERSION=1.75.1 -CONDA_EXE=/opt/conda/bin/conda -_CE_M= -build_alias=x86_64-conda-linux-gnu -CMAKE_ARGS=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -DCUDAToolkit_ROOT=/usr/local/cuda -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -HOSTNAME=charris-dt -CMAKE_ARGS_CONDA_NVCC_BACKUP=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -GPROF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gprof -CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu -DOTNET_ROOT=/usr/local/dotnet/current -_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu -SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-c4c425e4-154f-4f11-bd81-2cf391b574ad.sock -STRINGS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strings -CPP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cpp -CFLAGS_CONDA_NVCC_BACKUP=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -HOST_MRC_ROOT=/home/charris/dev/cyberdev/mrc -CUDA=11.8.0 -CUDA_PATH_CONDA_NVCC_BACKUP=/usr/local/cuda -REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-c4c425e4-154f-4f11-bd81-2cf391b574ad.sock -MRC_ROOT=/workspaces/mrc -CMAKE_CUDA_COMPILER_LAUNCHER=ccache -XML_CATALOG_FILES=file:///home/coder/.conda/envs/mrc/etc/xml/catalog file:///etc/xml/catalog -CPPFLAGS_CONDA_NVCC_BACKUP=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/coder/.conda/envs/mrc/include -PWD=/workspaces/mrc -GSETTINGS_SCHEMA_DIR=/home/coder/.conda/envs/mrc/share/glib-2.0/schemas -CONDA_PREFIX=/home/coder/.conda/envs/mrc -CCACHE_DIR=/workspaces/mrc/.cache/ccache -NVIDIA_DRIVER_CAPABILITIES=all -GSETTINGS_SCHEMA_DIR_CONDA_BACKUP= -CXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ -CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -VSCODE_GIT_ASKPASS_NODE=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/node -CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu -DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -y=\033[0;33m -x=\033[0m -r=\033[0;31m -g=\033[0;32m -e=\033[0;90m -LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -HOME=/home/coder -b=\033[0;36m -LANG=en_US.UTF-8 -CONDA_COMMAND=mambabuild -LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: -DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -MAMBA_NO_BANNER=1 -REMOTE_CONTAINERS=true -CUDA_VERSION=11.8.0 -CXX_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ -ELFEDIT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-elfedit -CONDA_PROMPT_MODIFIER=(mrc) -GIT_ASKPASS=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/extensions/git/dist/askpass.sh -CMAKE_PREFIX_PATH=/home/coder/.conda/envs/mrc:/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot/usr -CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -LD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -CMAKE_CXX_COMPILER_LAUNCHER=ccache -READELF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-readelf -GXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-g++ -PYTHON_VER=3.8 -VSCODE_GIT_ASKPASS_EXTRA_ARGS= -GCC_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -LESSCLOSE=/usr/bin/lesspipe %s %s -ADDR2LINE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-addr2line -VAULT_HOST=https://vault.ops.k8s.rapids.ai -TERM=xterm-256color -_CE_CONDA= -SIZE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-size -GCC_NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-nm -HOST=x86_64-conda-linux-gnu -REMOTE_CONTAINERS_SOCKETS=["/tmp/vscode-ssh-auth-c4c425e4-154f-4f11-bd81-2cf391b574ad.sock","/tmp/.X11-unix/X1","/home/coder/.gnupg/S.gpg-agent"] -LESSOPEN=| /usr/bin/lesspipe %s -CC_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc -USER=coder -LIBRARY_PATH=/usr/local/cuda/lib64/stubs -CUDA_PATH=/usr/local/cuda -VSCODE_GIT_IPC_HANDLE=/tmp/vscode-git-43aebffbc1.sock -CONDA_SHLVL=1 -AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -AS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-as -BASH_ENV_ETC_PROFILE=/etc/bash.bash_env -DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem /home/coder/.conda/envs/mrc/include -CUDA_VERSION_MINOR=8 -host_alias=x86_64-conda-linux-gnu -DISPLAY=:1 -CUDA_VERSION_PATCH=0 -SHLVL=2 -NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-nm -BASH_ENV=/etc/bash.bash_env -GCC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc -GIT_EDITOR=code --wait -NVARCH=x86_64 -CUDA_HOME_CONDA_NVCC_BACKUP=/usr/local/cuda -PROMPT_DIRTRIM=4 -PARALLEL_LEVEL=64 -GIT_VERSION=v23.01.00a -LD_GOLD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld.gold -CONDA_PYTHON_EXE=/opt/conda/bin/python -LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64 -CCACHE_NOHASHDIR=1 -CMAKE_C_COMPILER_LAUNCHER=ccache -CONDA_DEFAULT_ENV=mrc -OBJCOPY=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objcopy -CXXFLAGS_CONDA_NVCC_BACKUP=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -DEFAULT_CONDA_ENV=mrc -SCCACHE_S3_NO_CREDENTIALS=true -CUDA_VERSION_MAJOR=11 -VSCODE_GIT_ASKPASS_MAIN=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/extensions/git/dist/askpass-main.js -STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -CUDA_HOME=/usr/local/cuda -GCC_COLORS=error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01 -OBJDUMP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objdump -BROWSER=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/bin/helpers/browser.sh -PATH=/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/bin/remote-cli:/home/coder/.conda/envs/mrc/bin:/opt/conda/condabin:/usr/local/dotnet/current:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:/workspaces/mrc/.devcontainer/bin:/home/coder/.local/bin:/home/coder/.dotnet/tools:/home/coder/.dotnet/tools -CC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc -CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -CXXFILT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++filt -BUILD=x86_64-conda-linux-gnu -CMAKE_GENERATOR=Ninja -RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -REMOTE_CONTAINERS_DISPLAY_SOCK=/tmp/.X11-unix/X1 -CONDA_BUILD_SYSROOT=/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot -MRC_CACHE_DIR=/workspaces/mrc/.cache -OLDPWD=/workspaces/mrc/build -TERM_PROGRAM=vscode -VSCODE_IPC_HOOK_CLI=/tmp/vscode-ipc-826fda56-a3bb-4cc4-9cf2-7f21f42d0aa3.sock -_=/usr/bin/env -===End Env=== -===Running conda-build for libmrc=== -++ conda mambabuild --use-local --build-id-pat '{n}-{v}' --variants '{python: 3.8}' -c rapidsai -c nvidia -c conda-forge -c main ci/conda/recipes/libmrc -No numpy version specified in conda_build_config.yaml. Falling back to default numpy value of 1.21 -WARNING:conda_build.metadata:No numpy version specified in conda_build_config.yaml. Falling back to default numpy value of 1.21 -Cloning into '/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work'... -done. -Your branch is up to date with 'origin/_conda_cache_origin_head'. -Submodule 'morpheus_utils' (https://github.com/nv-morpheus/utilities.git) registered for path 'external/utilities' -Cloning into '/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work/external/utilities'... -From https://github.com/nv-morpheus/utilities - * branch 846c3a72f1ba4b867476c318b6e719bcf9423ffd -> FETCH_HEAD -Submodule path 'external/utilities': checked out '846c3a72f1ba4b867476c318b6e719bcf9423ffd' -commit 8c10908a1bc0311b0b4f821c54d0db83ff2b3bc1 -Author: Christopher Harris -Date: Tue Apr 4 16:52:25 2023 +0000 - - conda-build works for rmm 23.02 - -v23.01.00a-71-g8c10908a - -On branch _conda_cache_origin_head -Your branch is up to date with 'origin/_conda_cache_origin_head'. - -nothing to commit, working tree clean - -Updating build index: /home/coder/.conda/envs/mrc/conda-bld - -checkout: 'HEAD' -==> /home/coder/.conda/envs/mrc/bin/git log -n1 <== - -==> /home/coder/.conda/envs/mrc/bin/git describe --tags --dirty <== - -==> /home/coder/.conda/envs/mrc/bin/git status <== - -Adding in variants from internal_defaults -INFO:conda_build.variants:Adding in variants from internal_defaults -Adding in variants from /workspaces/mrc/ci/conda/recipes/libmrc/conda_build_config.yaml -INFO:conda_build.variants:Adding in variants from /workspaces/mrc/ci/conda/recipes/libmrc/conda_build_config.yaml -Adding in variants from argument_variants -INFO:conda_build.variants:Adding in variants from argument_variants -Attempting to finalize metadata for libmrc -/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/environ.py:499: UserWarning: The environment variable 'CMAKE_CUDA_ARCHITECTURES' is being passed through with value 'ALL'. If you are splitting build and test phases with --no-test, please ensure that this value is also set similarly at test time. - warnings.warn( -/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/environ.py:499: UserWarning: The environment variable 'MRC_CACHE_DIR' is being passed through with value '/workspaces/mrc/.cache'. If you are splitting build and test phases with --no-test, please ensure that this value is also set similarly at test time. - warnings.warn( -/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/environ.py:499: UserWarning: The environment variable 'PARALLEL_LEVEL' is being passed through with value '64'. If you are splitting build and test phases with --no-test, please ensure that this value is also set similarly at test time. - warnings.warn( -INFO:conda_build.metadata:Attempting to finalize metadata for libmrc -warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null -warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/c9ddbd6b.json" was modified by another program -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/b121c3e7.json" was modified by another program -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/497deca9.json" was modified by another program -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/09cdf8bf.json" was modified by another program -warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null -warning libmamba Could not parse state file: Could not load cache state: [json.exception.type_error.302] type must be string, but is null -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/47929eba.json" was modified by another program -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/3e39a7aa.json" was modified by another program -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/2ce54b42.json" was modified by another program -warning libmamba Cache file "/home/coder/.conda/envs/mrc/pkgs/cache/4ea078d6.json" was modified by another program -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Attempting to finalize metadata for mrc -INFO:conda_build.metadata:Attempting to finalize metadata for mrc -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -BUILD START: ['libmrc-23.01.00a-cuda_11.8_h6c4977a_71.tar.bz2', 'mrc-23.01.00a-cuda_11.8_py38_h86cc64d_71.tar.bz2'] -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld - -## Package Plan ## - - environment location: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho - - -The following NEW packages will be INSTALLED: - - _libgcc_mutex: 0.1-conda_forge conda-forge - _openmp_mutex: 4.5-2_gnu conda-forge - boost-cpp: 1.74.0-h75c5d50_8 conda-forge - bzip2: 1.0.8-h7f98852_4 conda-forge - c-ares: 1.18.1-h7f98852_0 conda-forge - ca-certificates: 2022.12.7-ha878542_0 conda-forge - cmake: 3.26.2-h077f3f9_0 conda-forge - cuda-nvml-dev: 11.8.86-0 nvidia - cudatoolkit: 11.8.0-h37601d7_11 conda-forge - cython: 0.29.33-py38h8dc9893_0 conda-forge - distro: 1.8.0-pyhd8ed1ab_0 conda-forge - doxygen: 1.9.2-hb166930_0 conda-forge - expat: 2.5.0-hcb278e6_1 conda-forge - flatbuffers: 2.0.8-hcb278e6_1 conda-forge - gflags: 2.2.2-he1b5a44_1004 conda-forge - glog: 0.6.0-h6f12383_0 conda-forge - gmock: 1.10.0-h4bd325d_7 conda-forge - grpc-cpp: 1.46.4-hc2bec63_7 conda-forge - gtest: 1.10.0-h4bd325d_7 conda-forge - icu: 70.1-h27087fc_0 conda-forge - keyutils: 1.6.1-h166bdaf_0 conda-forge - krb5: 1.20.1-h81ceb04_0 conda-forge - ld_impl_linux-64: 2.40-h41732ed_0 conda-forge - libabseil: 20220623.0-cxx17_h05df665_6 conda-forge - libcurl: 7.88.1-hdc1c0ab_1 conda-forge - libedit: 3.1.20191231-he28a2e2_2 conda-forge - libev: 4.33-h516909a_1 conda-forge - libexpat: 2.5.0-hcb278e6_1 conda-forge - libffi: 3.4.2-h7f98852_5 conda-forge - libgcc-ng: 12.2.0-h65d4601_19 conda-forge - libgomp: 12.2.0-h65d4601_19 conda-forge - libhwloc: 2.5.0-h6746aa3_0 conda-forge - libiconv: 1.17-h166bdaf_0 conda-forge - libnghttp2: 1.52.0-h61bc06f_0 conda-forge - libnsl: 2.0.0-h7f98852_0 conda-forge - libprotobuf: 3.20.2-h6239696_0 conda-forge - librmm: 22.08.00-cuda11_gd212232c_0 rapidsai - libsqlite: 3.40.0-h753d276_0 conda-forge - libssh2: 1.10.0-hf14f497_3 conda-forge - libstdcxx-ng: 12.2.0-h46fd767_19 conda-forge - libuuid: 2.38.1-h0b41bf4_0 conda-forge - libuv: 1.44.2-h166bdaf_0 conda-forge - libxml2: 2.10.3-hca2bb57_4 conda-forge - libzlib: 1.2.13-h166bdaf_4 conda-forge - make: 4.3-hd18ef5c_1 conda-forge - ncurses: 6.3-h27087fc_1 conda-forge - nlohmann_json: 3.9.1-h9c3ff4c_1 conda-forge - openssl: 3.1.0-h0b41bf4_0 conda-forge - packaging: 23.0-pyhd8ed1ab_0 conda-forge - pip: 23.0.1-pyhd8ed1ab_0 conda-forge - pybind11-abi: 4-hd8ed1ab_3 conda-forge - pybind11-stubgen: 0.10.5-pyhd8ed1ab_0 conda-forge - python: 3.8.16-he550d4f_1_cpython conda-forge - python_abi: 3.8-3_cp38 conda-forge - re2: 2022.06.01-h27087fc_1 conda-forge - readline: 8.2-h8228510_1 conda-forge - rhash: 1.4.3-h166bdaf_0 conda-forge - scikit-build: 0.16.7-pyh56297ac_0 conda-forge - setuptools: 67.6.1-pyhd8ed1ab_0 conda-forge - spdlog: 1.8.5-h4bd325d_1 conda-forge - tk: 8.6.12-h27826a3_0 conda-forge - ucx: 1.13.1-h538f049_1 conda-forge - wheel: 0.40.0-pyhd8ed1ab_0 conda-forge - xz: 5.2.6-h166bdaf_0 conda-forge - zlib: 1.2.13-h166bdaf_4 conda-forge - zstd: 1.5.2-h3eb15da_6 conda-forge - -Preparing transaction: ...working... done -Verifying transaction: ...working... WARNING conda.core.path_actions:verify(1093): Unable to create environments file. Path not writable. - environment location: /home/coder/.conda/environments.txt - -done -Executing transaction: ...working... By downloading and using the CUDA Toolkit conda packages, you accept the terms and conditions of the CUDA End User License Agreement (EULA): https://docs.nvidia.com/cuda/eula/index.html - -done -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld -Reloading output folder: /home/coder/.conda/envs/mrc/conda-bld - -## Package Plan ## - - environment location: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env - - -The following NEW packages will be INSTALLED: - - _libgcc_mutex: 0.1-conda_forge conda-forge - _openmp_mutex: 4.5-2_gnu conda-forge - _sysroot_linux-64_curr_repodata_hack: 3-h5bd9786_13 conda-forge - autoconf: 2.71-pl5321h2b4cb7a_1 conda-forge - binutils_impl_linux-64: 2.36.1-h193b22a_2 conda-forge - binutils_linux-64: 2.36-hf3e587d_10 conda-forge - bzip2: 1.0.8-h7f98852_4 conda-forge - c-ares: 1.18.1-h7f98852_0 conda-forge - ca-certificates: 2022.12.7-ha878542_0 conda-forge - ccache: 4.8-hfcdc2af_0 conda-forge - cmake: 3.26.2-h077f3f9_0 conda-forge - expat: 2.5.0-hcb278e6_1 conda-forge - gcc_impl_linux-64: 11.2.0-h82a94d6_16 conda-forge - gcc_linux-64: 11.2.0-h39a9532_10 conda-forge - gxx_impl_linux-64: 11.2.0-h82a94d6_16 conda-forge - gxx_linux-64: 11.2.0-hacbe6df_10 conda-forge - kernel-headers_linux-64: 3.10.0-h4a8ded7_13 conda-forge - keyutils: 1.6.1-h166bdaf_0 conda-forge - krb5: 1.20.1-h81ceb04_0 conda-forge - ld_impl_linux-64: 2.36.1-hea4e1c9_2 conda-forge - libcurl: 7.88.1-hdc1c0ab_1 conda-forge - libedit: 3.1.20191231-he28a2e2_2 conda-forge - libev: 4.33-h516909a_1 conda-forge - libexpat: 2.5.0-hcb278e6_1 conda-forge - libgcc-devel_linux-64: 11.2.0-h0952999_16 conda-forge - libgcc-ng: 12.2.0-h65d4601_19 conda-forge - libgfortran-ng: 12.2.0-h69a702a_19 conda-forge - libgfortran5: 12.2.0-h337968e_19 conda-forge - libgomp: 12.2.0-h65d4601_19 conda-forge - libhiredis: 1.0.2-h2cc385e_0 conda-forge - libnghttp2: 1.52.0-h61bc06f_0 conda-forge - libnsl: 2.0.0-h7f98852_0 conda-forge - libsanitizer: 11.2.0-he4da1e4_16 conda-forge - libssh2: 1.10.0-hf14f497_3 conda-forge - libstdcxx-devel_linux-64: 11.2.0-h0952999_16 conda-forge - libstdcxx-ng: 12.2.0-h46fd767_19 conda-forge - libtool: 2.4.7-h27087fc_0 conda-forge - libuv: 1.44.2-h166bdaf_0 conda-forge - libzlib: 1.2.13-h166bdaf_4 conda-forge - m4: 1.4.18-h516909a_1001 conda-forge - ncurses: 6.3-h27087fc_1 conda-forge - ninja: 1.11.1-h924138e_0 conda-forge - numactl-libs-cos7-x86_64: 2.0.12-h9b0a68f_1105 conda-forge - nvcc_linux-64: 11.8-ha67cc55_22 conda-forge - openssl: 3.1.0-h0b41bf4_0 conda-forge - perl: 5.32.1-2_h7f98852_perl5 conda-forge - pkg-config: 0.29.2-h36c2ea0_1008 conda-forge - rhash: 1.4.3-h166bdaf_0 conda-forge - sed: 4.8-he412f7d_0 conda-forge - sysroot_linux-64: 2.17-h4a8ded7_13 conda-forge - xz: 5.2.6-h166bdaf_0 conda-forge - zlib: 1.2.13-h166bdaf_4 conda-forge - zstd: 1.5.2-h3eb15da_6 conda-forge - -Preparing transaction: ...working... done -Verifying transaction: ...working... WARNING conda.core.path_actions:verify(1093): Unable to create environments file. Path not writable. - environment location: /home/coder/.conda/environments.txt - -done -Executing transaction: ...working... WARNING conda.core.envs_manager:register_env(49): Unable to register environment. Path not writable or missing. - environment location: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env - registry file: /home/coder/.conda/environments.txt -done -source tree in: /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work -export PREFIX=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho -export BUILD_PREFIX=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env -export SRC_DIR=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work -INFO: activate-binutils_linux-64.sh made the following environmental changes: -+ADDR2LINE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-addr2line -+AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -+AS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-as -+CXXFILT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++filt -+ELFEDIT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-elfedit -+GPROF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gprof -+LD_GOLD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld.gold -+LD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -+NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-nm -+OBJCOPY=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objcopy -+OBJDUMP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objdump -+RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -+READELF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-readelf -+SIZE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-size -+STRINGS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strings -+STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -INFO: activate-gcc_linux-64.sh made the following environmental changes: -+build_alias=x86_64-conda-linux-gnu -+CC_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc -+CC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc -+CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include --CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -+CMAKE_ARGS=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -+CMAKE_PREFIX_PATH=$PREFIX:/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot/usr -+CONDA_BUILD_SYSROOT=/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot -+_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu -+CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu -+CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu -+CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include -+CPP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cpp -+DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -+DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include -+GCC_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -+GCC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc -+GCC_NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-nm -+GCC_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -+host_alias=x86_64-conda-linux-gnu -+HOST=x86_64-conda-linux-gnu -+LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib --LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -INFO: activate-gxx_linux-64.sh made the following environmental changes: -+CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include --CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -+CXX_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ -+CXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ -+DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -+GXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-g++ -INFO: deactivate-gxx_linux-64.sh made the following environmental changes: --CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -+CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include --CXX_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ --CXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++ --DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix --GXX=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-g++ -INFO: deactivate-gcc_linux-64.sh made the following environmental changes: --build_alias=x86_64-conda-linux-gnu --CC_FOR_BUILD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc --CC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cc --CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -+CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include --CMAKE_ARGS=-DCMAKE_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin --CMAKE_PREFIX_PATH=$PREFIX:/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot/usr --CONDA_BUILD_SYSROOT=/home/coder/.conda/envs/mrc/x86_64-conda-linux-gnu/sysroot --_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu --CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu --CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu --CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include --CPP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-cpp --DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix --DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include --GCC_AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ar --GCC=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc --GCC_NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-nm --GCC_RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gcc-ranlib --host_alias=x86_64-conda-linux-gnu --HOST=x86_64-conda-linux-gnu --LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -+LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -INFO: deactivate-binutils_linux-64.sh made the following environmental changes: --ADDR2LINE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-addr2line --AR=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ar --AS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-as --CXXFILT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-c++filt --ELFEDIT=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-elfedit --GPROF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-gprof --LD_GOLD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld.gold --LD=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ld --NM=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-nm --OBJCOPY=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objcopy --OBJDUMP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-objdump --RANLIB=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-ranlib --READELF=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-readelf --SIZE=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-size --STRINGS=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strings --STRIP=/home/coder/.conda/envs/mrc/bin/x86_64-conda-linux-gnu-strip -INFO: activate-binutils_linux-64.sh made the following environmental changes: -+ADDR2LINE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-addr2line -+AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -+AS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-as -+CXXFILT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++filt -+ELFEDIT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-elfedit -+GPROF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gprof -+LD_GOLD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld.gold -+LD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -+NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-nm -+OBJCOPY=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objcopy -+OBJDUMP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objdump -+RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -+READELF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-readelf -+SIZE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-size -+STRINGS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strings -+STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -INFO: activate-gcc_linux-64.sh made the following environmental changes: -+build_alias=x86_64-conda-linux-gnu -+CC_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cc -+CC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cc -+CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include --CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -+CMAKE_ARGS=-DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -+CMAKE_PREFIX_PATH=$PREFIX:$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot/usr -+CONDA_BUILD_SYSROOT=$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -+_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu -+CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu -+CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu -+CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include -+CPP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cpp -+DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -+DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include -+GCC_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -+GCC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc -+GCC_NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-nm -+GCC_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -+host_alias=x86_64-conda-linux-gnu -+HOST=x86_64-conda-linux-gnu -+LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib --LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -INFO: activate-gxx_linux-64.sh made the following environmental changes: -+CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include --CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -+CXX_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ -+CXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ -+DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -+GXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ -CC : $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc -CXX : $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ -CUDAHOSTCXX : $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ -CUDA : -CMAKE_ARGS : -DUCX_VERSION=1.13 -DMRC_RAPIDS_VERSION=22.08 -DPython_EXECUTABLE=$PREFIX/bin/python -DCMAKE_CUDA_ARCHITECTURES=ALL -DMRC_BUILD_PYTHON=ON -DMRC_USE_CCACHE=OFF -DMRC_USE_CONDA=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_MESSAGE_CONTEXT_SHOW=ON -DMRC_CACHE_DIR=/workspaces/mrc/.cache -DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=/usr/local/cuda;$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -DCUDAToolkit_ROOT=/usr/local/cuda -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -========Begin Env======== -GCC_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -CONDA_EXE=/home/coder/.conda/envs/mrc/bin/conda -_CE_M= -PKG_BUILD_STRING=placeholder -PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig -build_alias=x86_64-conda-linux-gnu -PYTHONNOUSERSITE=1 -CONDA_BACKUP_LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -CMAKE_ARGS=-DUCX_VERSION=1.13 -DMRC_RAPIDS_VERSION=22.08 -DPython_EXECUTABLE=$PREFIX/bin/python -DCMAKE_CUDA_ARCHITECTURES=ALL -DMRC_BUILD_PYTHON=ON -DMRC_USE_CCACHE=OFF -DMRC_USE_CONDA=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_MESSAGE_CONTEXT_SHOW=ON -DMRC_CACHE_DIR=/workspaces/mrc/.cache -DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=/usr/local/cuda;$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -DCUDAToolkit_ROOT=/usr/local/cuda -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -CMAKE_ARGS_CONDA_NVCC_BACKUP=-DCMAKE_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -DCMAKE_CXX_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_C_COMPILER_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -DCMAKE_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -DCMAKE_CXX_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_C_COMPILER_RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ranlib -DCMAKE_LINKER=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -DCMAKE_STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH=$PREFIX;$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -DCMAKE_INSTALL_PREFIX=$PREFIX -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_PROGRAM_PATH=$BUILD_PREFIX/bin;$PREFIX/bin -PREFIX=$PREFIX -pin_run_as_build=OrderedDict([('python', OrderedDict([('min_pin', 'x.x'), ('max_pin', 'x.x')])), ('r-base', OrderedDict([('min_pin', 'x.x'), ('max_pin', 'x.x')])), ('boost-cpp', {'max_pin': 'x.x'})]) -GPROF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gprof -CONDA_TOOLCHAIN_BUILD=x86_64-conda-linux-gnu -_CONDA_PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_x86_64_conda_cos6_linux_gnu -CONDA_PERL=5.26 -STDLIB_DIR=$PREFIX/lib/python3.8 -STRINGS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strings -CPP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cpp -CONDA_NPY=121 -SHLIB_EXT=.so -PY3K=1 -CFLAGS_CONDA_NVCC_BACKUP=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -CUDA_PATH_CONDA_NVCC_BACKUP=/usr/local/cuda -CPU_COUNT=64 -CONDA_BACKUP_BUILD=x86_64-conda-linux-gnu -DIRTY= -CONDA_PY=38 -cpu_optimization_target=nocona -build_platform=linux-64 -XML_CATALOG_FILES=file://$PREFIX/etc/xml/catalog file:///etc/xml/catalog -libabseil=20220623.0 -CPPFLAGS_CONDA_NVCC_BACKUP=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include -PKG_NAME=libmrc-split -PWD=$SRC_DIR -glog=0.6 -ucx=1.13 -GIT_DESCRIBE_NUMBER=71 -cuda_compiler=nvcc -CONDA_PREFIX=$BUILD_PREFIX -PIP_NO_BUILD_ISOLATION=False -PIP_NO_INDEX=True -CXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ -CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -isystem /usr/local/cuda/include -PKG_BUILDNUM=71 -LUA_VER=5 -CONDA_TOOLCHAIN_HOST=x86_64-conda-linux-gnu -DEBUG_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fortran_compiler=gfortran -CCACHE_DEBUG=1 -R_VER=3.5 -LDFLAGS=-Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,$PREFIX/lib -Wl,-rpath-link,$PREFIX/lib -L$PREFIX/lib -Wl,-O2 -Wl,--sort-common -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,--disable-new-dtags -Wl,--gc-sections -Wl,--allow-shlib-undefined -Wl,-rpath,/home/coder/.conda/envs/mrc/lib -Wl,-rpath-link,/home/coder/.conda/envs/mrc/lib -L/home/coder/.conda/envs/mrc/lib -HOME=/home/coder -LANG=en_US.UTF-8 -cxx_compiler=gxx -DEBUG_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-all -fno-plt -Og -g -Wall -Wextra -fvar-tracking-assignments -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -SP_DIR=$PREFIX/lib/python3.8/site-packages -CONDA_BUILD=1 -CXX_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ -CONDA_BACKUP_CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -PIP_NO_DEPENDENCIES=True -ELFEDIT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-elfedit -CONDA_PROMPT_MODIFIER=($BUILD_PREFIX) -CMAKE_PREFIX_PATH=$PREFIX:$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot/usr -CPPFLAGS=-DNDEBUG -D_FORTIFY_SOURCE=2 -O2 -isystem $PREFIX/include -isystem /usr/local/cuda/include -target_platform=linux-64 -LD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld -cuda_compiler_version=11.8 -PKG_HASH=1234567 -CONDA_LUA=5 -zip_keys=[['rapids_version', 'libabseil', 'grpc_cpp', 'ucx', 'libprotobuf']] -CCACHE_BASEDIR=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a -PIP_CACHE_DIR=/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/pip_cache -READELF=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-readelf -CUDAHOSTCXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++ -GXX=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ -CONDA_STACKED_3=true -RECIPE_DIR=/workspaces/mrc/ci/conda/recipes/libmrc -GCC_AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-ar -ignore_build_only_deps={'numpy', 'python'} -gflags=2.2 -ADDR2LINE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-addr2line -CONDA_BACKUP_CXXFLAGS=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -_CE_CONDA= -GCC_NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc-nm -SIZE=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-size -HOST=x86_64-conda-linux-gnu -boost_cpp=1.74.0 -CCACHE_SLOPPINESS=system_headers -GIT_DESCRIBE_TAG_PEP440=v23.01.00a.post71+8c10908a -CC_FOR_BUILD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-cc -GIT_BUILD_STR=71_g8c10908a -SUBDIR=linux-64 -CCACHE_DEBUGDIR=$SRC_DIR/ccache_debug -PYTHON=$PREFIX/bin/python -CUDA_PATH=/usr/local/cuda -rapids_version=22.08 -CONDA_SHLVL=3 -PERL_VER=5.26 -PIP_IGNORE_INSTALLED=True -AR=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ar -AS=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-as -ARCH=64 -DEBUG_CPPFLAGS=-D_DEBUG -D_FORTIFY_SOURCE=2 -Og -isystem $PREFIX/include -ROOT=/home/coder/.conda/envs/mrc -cxx_compiler_version=11.2 -host_alias=x86_64-conda-linux-gnu -DISPLAY=:1 -SHLVL=1 -GIT_DESCRIBE_HASH=g8c10908a -NM=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-nm -LD_RUN_PATH=$PREFIX/lib -SYS_PYTHON=/home/coder/.conda/envs/mrc/bin/python3.8 -GCC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc -CUDA_HOME_CONDA_NVCC_BACKUP=/usr/local/cuda -HTTPS_PROXY= -HTTP_PROXY= -PARALLEL_LEVEL=64 -CONDA_R=3.5 -CONDA_BUILD_STATE=BUILD -GIT_DESCRIBE_TAG=v23.01.00a -SRC_DIR=$SRC_DIR -LD_GOLD=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ld.gold -extend_keys={'ignore_build_only_deps', 'extend_keys', 'ignore_version', 'pin_run_as_build'} -CONDA_PYTHON_EXE=/home/coder/.conda/envs/mrc/bin/python -LD_LIBRARY_PATH=$BUILD_PREFIX/lib:$PREFIX/lib: -BUILD_PREFIX=$BUILD_PREFIX -NPY_DISTUTILS_APPEND_FLAGS=1 -CCACHE_NOHASHDIR=1 -GIT_FULL_HASH=8c10908a1bc0311b0b4f821c54d0db83ff2b3bc1 -SYS_PREFIX=/home/coder/.conda/envs/mrc -CONDA_DEFAULT_ENV=$BUILD_PREFIX -OBJCOPY=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objcopy -PKG_VERSION=23.01.00a -boost=1.74.0 -REQUESTS_CA_BUNDLE= -CXXFLAGS_CONDA_NVCC_BACKUP=-fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -fvisibility-inlines-hidden -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -cran_mirror=https://cran.r-project.org -PY_VER=3.8 -STRIP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-strip -CUDA_HOME=/usr/local/cuda -r_base=3.5 -OBJDUMP=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-objdump -PATH=$BUILD_PREFIX/bin:$PREFIX/bin:/home/coder/.conda/envs/mrc/condabin:$BUILD_PREFIX/bin:$PREFIX/bin:/vscode/vscode-server/bin/linux-x64/441438abd1ac652551dbe4d408dfcec8a499b8bf/bin/remote-cli:/home/coder/.conda/envs/mrc/bin:/opt/conda/condabin:/usr/local/dotnet/current:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:/workspaces/mrc/.devcontainer/bin:/home/coder/.local/bin:/home/coder/.dotnet/tools:/home/coder/.dotnet/tools -CC=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc -CMake Deprecation Warning at build-conda/_deps/rapids-cmake-src/rapids-cmake/cmake/detail/policy.cmake:48 (message): - rapids-cmake policy [deprecated=23.02 removed=23.06]: Usage of `ALL` as - value for `CMAKE_CUDA_ARCHITECTURES` or the env variable `CUDAARCHS` has - been deprecated, use `RAPIDS` instead. You are currently requesting - rapids-cmake please upgrade to 23.02. -Call Stack (most recent call first): - build-conda/_deps/rapids-cmake-src/rapids-cmake/cuda/detail/architectures_policy.cmake:42 (rapids_cmake_policy) - build-conda/_deps/rapids-cmake-src/rapids-cmake/cuda/init_architectures.cmake:84 (rapids_cuda_architectures_policy) - external/utilities/cmake/morpheus_utils/environment_config/rapids_cmake/register_api.cmake:28 (rapids_cuda_init_architectures) - CMakeLists.txt:78 (morpheus_utils_initialize_cuda_arch) - - -CMake Warning at external/utilities/cmake/morpheus_utils/environment_config/ccache/register_api.cmake:122 (message): - The value for MRC_CACHE_DIR (/workspaces/mrc/.cache) is not contained in - any CMAKE_FIND_ROOT_PATH - (/usr/local/cuda;/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placeho;/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/_build_env/x86_64-conda-linux-gnu/sysroot). - This will result in cmake being unable to find any downloaded packages. - The cache path has been appended to the back of CMAKE_FIND_ROOT_PATH -Call Stack (most recent call first): - cmake/environment/init_ccache.cmake:20 (morpheus_utils_check_cache_path) - CMakeLists.txt:134 (include) - - -CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:4 (file): - file failed to open for reading (No such file or directory): - - /home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work/_THRUST_VERSION_INCLUDE_DIR-NOTFOUND/thrust/version.h -Call Stack (most recent call first): - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) - build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) - external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) - cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) - CMakeLists.txt:145 (include) - - -CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:11 (math): - math cannot parse the expression: " / 100000": syntax error, unexpected - exp_DIVIDE (2). -Call Stack (most recent call first): - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) - build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) - external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) - cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) - CMakeLists.txt:145 (include) - - -CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:12 (math): - math cannot parse the expression: "( / 100) % 1000": syntax error, - unexpected exp_DIVIDE (3). -Call Stack (most recent call first): - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) - build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) - external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) - cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) - CMakeLists.txt:145 (include) - - -CMake Error at /home/coder/.conda/envs/mrc/lib/cmake/thrust/thrust-config-version.cmake:13 (math): - math cannot parse the expression: " % 100": syntax error, unexpected - exp_MOD (2). -Call Stack (most recent call first): - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-dependencies.cmake:24 (find_package) - /home/coder/.conda/envs/mrc/lib/cmake/rmm/rmm-config.cmake:75 (include) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:236 (find_package) - /workspaces/mrc/.cache/cpm/cpm/CPM_0.35.6.cmake:296 (cpm_find_package) - build-conda/_deps/rapids-cmake-src/rapids-cmake/cpm/find.cmake:167 (CPMFindPackage) - external/utilities/cmake/morpheus_utils/package_config/rmm/Configure_rmm.cmake:29 (rapids_cpm_find) - cmake/dependencies.cmake:45 (morpheus_utils_configure_rmm) - CMakeLists.txt:145 (include) - - -CFLAGS=-march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem $PREFIX/include -fdebug-prefix-map=$SRC_DIR=/usr/local/src/conda/libmrc-split-23.01.00a -fdebug-prefix-map=$PREFIX=/usr/local/src/conda-prefix -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /home/coder/.conda/envs/mrc/include -isystem /usr/local/cuda/include -isystem /usr/local/cuda/include -CXXFILT=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-c++filt -CMAKE_CUDA_ARCHITECTURES=ALL -BUILD=x86_64-conda-linux-gnu -grpc_cpp=1.46 -CONDA_PREFIX_1=/home/coder/.conda/envs/mrc -CONDA_PREFIX_2=$PREFIX -c_compiler_version=11.2 -CMAKE_GENERATOR=Ninja -RANLIB=$BUILD_PREFIX/bin/x86_64-conda-linux-gnu-ranlib -CONDA_BUILD_SYSROOT=$BUILD_PREFIX/x86_64-conda-linux-gnu/sysroot -NPY_VER=1.21 -c_compiler=gcc -MRC_CACHE_DIR=/workspaces/mrc/.cache -CUDAFLAGS=-isystem $BUILD_PREFIX/include -isystem $PREFIX/include -libprotobuf=3.20 -_=/usr/bin/env -========End Env======== -PYTHON: $PREFIX/bin/python -which python: $PREFIX/bin/python --- [mrc] Downloading RAPIDS CMake Version: 23.02 --- [mrc] MRC_USE_CONDA is defined and CONDA environment ($BUILD_PREFIX) exists. --- [mrc.rapids.cmake.support_conda_env] Conda build detected, CMAKE_PREFIX_PATH set to: $PREFIX;$BUILD_PREFIX;$SRC_DIR/cmake --- [mrc] Prepending CONDA_PREFIX ($BUILD_PREFIX) to CMAKE_FIND_ROOT_PATH --- [mrc] The C compiler identification is GNU 11.2.0 --- [mrc] The CXX compiler identification is GNU 11.2.0 --- [mrc] Detecting C compiler ABI info --- [mrc] Detecting C compiler ABI info - done --- [mrc] Check for working C compiler: $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-gcc - skipped --- [mrc] Detecting C compile features --- [mrc] Detecting C compile features - done --- [mrc] Detecting CXX compiler ABI info --- [mrc] Detecting CXX compiler ABI info - done --- [mrc] Check for working CXX compiler: $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ - skipped --- [mrc] Detecting CXX compile features --- [mrc] Detecting CXX compile features - done --- [mrc] Setting CUDA host compiler to match CXX compiler: $BUILD_PREFIX/bin/x86_64-conda-linux-gnu-g++ --- [mrc] The CUDA compiler identification is NVIDIA 11.8.89 --- [mrc] Detecting CUDA compiler ABI info --- [mrc] Detecting CUDA compiler ABI info - done --- [mrc] Check for working CUDA compiler: $BUILD_PREFIX/bin/nvcc - skipped --- [mrc] Detecting CUDA compile features --- [mrc] Detecting CUDA compile features - done --- [mrc.cache.cpm] Using CPM source cache: /workspaces/mrc/.cache/cpm --- [mrc.cache.cpm] MORPHEUS_UTILS_RAPIDS_CPM_INIT_OVERRIDE:$SRC_DIR/cmake/rapids_cpm_package_overrides.json, is set and will be used. --- [mrc.dep.rapids.find.package] Found CUDAToolkit: /usr/local/cuda/include (found version "11.8.89") --- [mrc.dep.rapids.find.package] Performing Test CMAKE_HAVE_LIBC_PTHREAD --- [mrc.dep.rapids.find.package] Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed --- [mrc.dep.rapids.find.package] Looking for pthread_create in pthreads --- [mrc.dep.rapids.find.package] Looking for pthread_create in pthreads - not found --- [mrc.dep.rapids.find.package] Looking for pthread_create in pthread --- [mrc.dep.rapids.find.package] Looking for pthread_create in pthread - found --- [mrc.dep.rapids.find.package] Found Threads: TRUE --- [mrc.dep.boost.rapids.cpm.find] CPM: using local package Boost@1.74.0 --- [mrc.dep.ucx.rapids.cpm.find] CPM: using local package ucx@1.13.1 --- [mrc.dep.hwloc] Found PkgConfig: $BUILD_PREFIX/bin/pkg-config (found version "0.29.2") --- [mrc.dep.hwloc] Checking for module 'hwloc' --- [mrc.dep.hwloc] Found hwloc, version 2.5.0 --- [mrc.dep.hwloc] Found hwloc with pkg-config at: $PREFIX/lib --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::Thrust: (1.15.0.0) --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::Thrust > ALIASED_TARGET: _Thrust_Thrust --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::Thrust > INTERFACE_INCLUDE_DIRECTORIES: $PREFIX/include/rapids/thrust --- [mrc.dep.rmm.rapids.cpm.find] Thrust: Assembling target rmm::Thrust. Options: FROM_OPTIONS --- [mrc.dep.rmm.rapids.cpm.find] Thrust: Creating system cache options: (advanced=FALSE) --- [mrc.dep.rmm.rapids.cpm.find] Thrust: - Host Option=THRUST_HOST_SYSTEM Default=CPP Doc='Thrust host system.' --- [mrc.dep.rmm.rapids.cpm.find] Thrust: - Device Option=THRUST_DEVICE_SYSTEM Default=CUDA Doc='Thrust device system.' --- [mrc.dep.rmm.rapids.cpm.find] Thrust: Current option settings: --- [mrc.dep.rmm.rapids.cpm.find] Thrust: - THRUST_HOST_SYSTEM=CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: - THRUST_DEVICE_SYSTEM=CUDA --- [mrc.dep.rmm.rapids.cpm.find] Thrust: Generating CPP targets. --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP: (Thrust 1.15.0.0) --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP > ALIASED_TARGET: _Thrust_CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP > INTERFACE_LINK_LIBRARIES: Thrust::Thrust --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host: --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > ALIASED_TARGET: _Thrust_CPP_Host --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > INTERFACE_COMPILE_DEFINITIONS: THRUST_HOST_SYSTEM=THRUST_HOST_SYSTEM_CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > INTERFACE_LINK_LIBRARIES: Thrust::CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Host > INTERFACE_THRUST_HOST: CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device: --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > ALIASED_TARGET: _Thrust_CPP_Device --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > INTERFACE_COMPILE_DEFINITIONS: THRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > INTERFACE_LINK_LIBRARIES: Thrust::CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CPP::Device > INTERFACE_THRUST_DEVICE: CPP --- [mrc.dep.rmm.rapids.cpm.find] Thrust: Searching for CUB REQUIRED --- [mrc.dep.rmm.rapids.cpm.find] Thrust: Setting CUB target to CUB::CUB --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: CUB::CUB: (1.15.0.0) --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: CUB::CUB > ALIASED_TARGET: _CUB_CUB --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: CUB::CUB > INTERFACE_INCLUDE_DIRECTORIES: $PREFIX/include/rapids/thrust/dependencies --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA: (CUB 1.15.0.0) --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA > ALIASED_TARGET: _Thrust_CUDA --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA > INTERFACE_LINK_LIBRARIES: Thrust::Thrust;CUB::CUB --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device: --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > ALIASED_TARGET: _Thrust_CUDA_Device --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > INTERFACE_COMPILE_DEFINITIONS: THRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_CUDA --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > INTERFACE_LINK_LIBRARIES: Thrust::CUDA --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: Thrust::CUDA::Device > INTERFACE_THRUST_DEVICE: CUDA --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: rmm::Thrust: (Thrust 1.15.0.0) --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: rmm::Thrust > IMPORTED: TRUE --- [mrc.dep.rmm.rapids.cpm.find] Thrust: TargetInfo: rmm::Thrust > INTERFACE_LINK_LIBRARIES: Thrust::CPP::Host;Thrust::CUDA::Device --- [mrc.dep.rmm.rapids.cpm.find] CPM: using local package rmm@23.02.0 --- [mrc.dep.glog.rapids.cpm.find] CPM: using local package glog@0.6.0 --- [mrc.dep.rapids.find.package] Found ZLIB: $PREFIX/lib/libz.so (found version "1.2.13") --- [mrc.dep.rapids.find.package] Found Protobuf: $PREFIX/lib/libprotobuf.so;-lpthread (found version "3.20.2") --- [mrc.dep.rapids.find.package] Found OpenSSL: $PREFIX/lib/libcrypto.so (found version "3.1.0") --- [mrc.dep.rapids.find.package] Found c-ares: $PREFIX/lib/cmake/c-ares/c-ares-config.cmake (found version "1.18.1") --- [mrc.dep.rapids.find.package] Check if compiler accepts -pthread --- [mrc.dep.rapids.find.package] Check if compiler accepts -pthread - yes --- [mrc.dep.rapids.find.package] Found RE2 via CMake. --- [mrc.dep.rxcpp.rapids.cpm.find] Found Git: /home/coder/.conda/envs/mrc/bin/git (found version "2.40.0") --- [mrc.dep.rxcpp.rapids.cpm.find] Found Boost: $PREFIX/lib/cmake/Boost-1.74.0/BoostConfig.cmake (found version "1.74.0") found components: fiber --- [mrc.dep.rxcpp.rapids.cpm.find] RXCPP_DIR: /workspaces/mrc/.cache/cpm/rxcpp/b2d191b4c471273143046efec8f535a2cf41a228 --- [mrc.dep.rxcpp.rapids.cpm.find] CPM: adding package rxcpp@4.1.1.2 (v4.1.1.2 at /workspaces/mrc/.cache/cpm/rxcpp/b2d191b4c471273143046efec8f535a2cf41a228) --- [mrc.dep.rapids.find.package] Found nlohmann_json: $PREFIX/lib/cmake/nlohmann_json/nlohmann_jsonConfig.cmake (found version "3.9.1") --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB - Success --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_VISIBILITY --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_DEPRECATED_ATTR --- [mrc.dep.prometheus_cpp.rapids.cpm.find] Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success --- [mrc.dep.prometheus_cpp.rapids.cpm.find] The following OPTIONAL packages have been found: -[mrc.dep.prometheus_cpp.rapids.cpm.find] -[mrc.dep.prometheus_cpp.rapids.cpm.find] * ZLIB -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Protobuf -[mrc.dep.prometheus_cpp.rapids.cpm.find] * OpenSSL -[mrc.dep.prometheus_cpp.rapids.cpm.find] * c-ares -[mrc.dep.prometheus_cpp.rapids.cpm.find] * absl -[mrc.dep.prometheus_cpp.rapids.cpm.find] * re2 -[mrc.dep.prometheus_cpp.rapids.cpm.find] -[mrc.dep.prometheus_cpp.rapids.cpm.find] -- The following REQUIRED packages have been found: -[mrc.dep.prometheus_cpp.rapids.cpm.find] -[mrc.dep.prometheus_cpp.rapids.cpm.find] * CUDAToolkit -[mrc.dep.prometheus_cpp.rapids.cpm.find] * CUB -[mrc.dep.prometheus_cpp.rapids.cpm.find] * gflags (required version >= 2.2.2) -[mrc.dep.prometheus_cpp.rapids.cpm.find] * gRPC -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Git -[mrc.dep.prometheus_cpp.rapids.cpm.find] * boost_headers (required version == 1.74.0) -[mrc.dep.prometheus_cpp.rapids.cpm.find] * boost_fiber (required version == 1.74.0) -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Boost -[mrc.dep.prometheus_cpp.rapids.cpm.find] * nlohmann_json -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Threads -[mrc.dep.prometheus_cpp.rapids.cpm.find] -[mrc.dep.prometheus_cpp.rapids.cpm.find] -- The following features have been disabled: -[mrc.dep.prometheus_cpp.rapids.cpm.find] -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Pull, support for pulling metrics -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Push, support for pushing metrics to a push-gateway -[mrc.dep.prometheus_cpp.rapids.cpm.find] * Compression, support for zlib compression of metrics -[mrc.dep.prometheus_cpp.rapids.cpm.find] * pkg-config, generate pkg-config files -[mrc.dep.prometheus_cpp.rapids.cpm.find] * IYWU, include-what-you-use -[mrc.dep.prometheus_cpp.rapids.cpm.find] --- [mrc.dep.prometheus_cpp.rapids.cpm.find] CPM: adding package prometheus-cpp@1.0.0 (v1.0.0 at /workspaces/mrc/.cache/cpm/prometheus-cpp/5f59dbe2f5075854833ecc704cfee74e44e94e30) --- [mrc.dep.libcudacxx.rapids.cpm.libcudacxx.rapids.cpm.find] Found libcudacxx: /workspaces/mrc/.cache/cpm/libcudacxx/170abbc851988024261455166b581b55f418a0a1/lib/cmake/libcudacxx/libcudacxx-config.cmake (found version "1.9.1.0") --- [mrc.dep.libcudacxx.rapids.cpm.libcudacxx.rapids.cpm.find] CPM: adding package libcudacxx@1.9.1 (branch/1.9.1 at /workspaces/mrc/.cache/cpm/libcudacxx/170abbc851988024261455166b581b55f418a0a1) --- [mrc.compiler] Performing Test COMPILER_C_HAS_O0 --- [mrc.compiler] Performing Test COMPILER_C_HAS_O0 - Success --- [mrc.compiler] Performing Test COMPILER_CXX_HAS_O0 --- [mrc.compiler] Performing Test COMPILER_CXX_HAS_O0 - Success --- [mrc.python] Found Python3: $PREFIX/bin/python3.8 (found version "3.8.16") found components: Development Development.Module Development.Embed Interpreter missing components: NumPy --- [mrc.python] Found Python: $PREFIX/bin/python (found version "3.8.16") found components: Development Development.Module Development.Embed Interpreter missing components: NumPy --- [mrc.python.pybind11.rapids.cpm.find] pybind11 v2.8.1 --- [mrc.python.pybind11.rapids.cpm.find] Performing Test HAS_FLTO --- [mrc.python.pybind11.rapids.cpm.find] Performing Test HAS_FLTO - Success --- [mrc.python.pybind11.rapids.cpm.find] CPM: adding package pybind11@2.8.1 (v2.8.1 at /workspaces/mrc/.cache/cpm/pybind11/4b2e65a3ce30c3ecd70e3ab0df9048c78baa92d7) --- [mrc.python] Found Cython: $PREFIX/bin/cython --- [mrc.python] Python3_EXECUTABLE (before find_package): $PREFIX/bin/python3.8 --- [mrc.python] Python3_ROOT_DIR (before find_package): --- [mrc.python] FIND_PYTHON_STRATEGY (before find_package): --- [mrc.python] Python3_FOUND: TRUE --- [mrc.python] Python3_EXECUTABLE: $PREFIX/bin/python3.8 --- [mrc.python] Python3_INTERPRETER_ID: Python --- [mrc.python] Python3_STDLIB: $PREFIX/lib/python3.8 --- [mrc.python] Python3_STDARCH: $PREFIX/lib/python3.8 --- [mrc.python] Python3_SITELIB: $PREFIX/lib/python3.8/site-packages --- [mrc.python] Python3_SITEARCH: $PREFIX/lib/python3.8/site-packages --- [mrc.python] Python3_SOABI: cpython-38-x86_64-linux-gnu --- [mrc.python] Python3_INCLUDE_DIRS: $PREFIX/include/python3.8 --- [mrc.python] Python3_LIBRARIES: $PREFIX/lib/libpython3.8.so --- [mrc.python] Python3_LIBRARY_DIRS: $PREFIX/lib --- [mrc.python] Python3_VERSION: 3.8.16 --- [mrc.python] Python3_NumPy_FOUND: FALSE --- [mrc.python] Python3_NumPy_INCLUDE_DIRS: _Python3_NumPy_INCLUDE_DIR-NOTFOUND --- [mrc.python] Python3_NumPy_VERSION: --- [mrc.python.package-mrc] Creating python package 'mrc' --- [mrc.python] Found Python: $PREFIX/bin/python (found suitable version "3.8.16", minimum required is "3.8") found components: Development Interpreter Development.Module Development.Embed --- [mrc.python.core.module-common] Adding Pybind11 Module: mrc.core.common --- [mrc.python.core.module-executor] Adding Pybind11 Module: mrc.core.executor --- [mrc.python.core.module-logging] Adding Pybind11 Module: mrc.core.logging --- [mrc.python.core.module-node] Adding Pybind11 Module: mrc.core.node --- [mrc.python.core.module-operators] Adding Pybind11 Module: mrc.core.operators --- [mrc.python.core.module-options] Adding Pybind11 Module: mrc.core.options --- [mrc.python.core.module-pipeline] Adding Pybind11 Module: mrc.core.pipeline --- [mrc.python.core.module-plugins] Adding Pybind11 Module: mrc.core.plugins --- [mrc.python.core.module-segment] Adding Pybind11 Module: mrc.core.segment --- [mrc.python.core.module-subscriber] Adding Pybind11 Module: mrc.core.subscriber --- [mrc.python.benchmarking.module-watchers] Adding Pybind11 Module: mrc.benchmarking.watchers --- [mrc.python.tests.module-test_edges_cpp] Adding Pybind11 Module: mrc.tests.test_edges_cpp --- [mrc.python.tests.module-sample_modules] Adding Pybind11 Module: mrc.tests.sample_modules --- [mrc.python.tests.module-utils] Adding Pybind11 Module: mrc.tests.utils --- [mrc.python] Finalizing python package 'mrc' --- [mrc.python] Python package 'mrc' has been built but has not been installed. Use `$PREFIX/bin/python3.8 -m pip install $SRC_DIR/build-conda/python` to install the library manually --- Configuring incomplete, errors occurred! -Traceback (most recent call last): - File "/home/coder/.conda/envs/mrc/bin/conda-mambabuild", line 10, in - sys.exit(main()) - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/boa/cli/mambabuild.py", line 256, in main - call_conda_build(action, config) - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/boa/cli/mambabuild.py", line 228, in call_conda_build - result = api.build( - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/api.py", line 180, in build - return build_tree( - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/build.py", line 3078, in build_tree - packages_from_this = build(metadata, stats, - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/build.py", line 2198, in build - utils.check_call_env(cmd, env=env, rewrite_stdout_env=rewrite_env, - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/utils.py", line 451, in check_call_env - return _func_defaulting_env_to_os_environ("call", *popenargs, **kwargs) - File "/home/coder/.conda/envs/mrc/lib/python3.8/site-packages/conda_build/utils.py", line 427, in _func_defaulting_env_to_os_environ - raise subprocess.CalledProcessError(proc.returncode, _args) -subprocess.CalledProcessError: Command '['/bin/bash', '-o', 'errexit', '/home/coder/.conda/envs/mrc/conda-bld/libmrc-split-23.01.00a/work/conda_build.sh']' returned non-zero exit status 1.