Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
mpi_type:
- conda
openmpi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
mpi_type:
- external
openmpi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
mpi_type:
- conda
openmpi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
mpi_type:
- external
openmpi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
mpi_type:
- conda
openmpi:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
mpi_type:
- external
openmpi:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cuda_compiler:
- None
cuda_compiler_version:
- None
cxx_compiler:
Expand All @@ -32,6 +30,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
macos_machine:
- x86_64-apple-darwin13.4.0
mpi_type:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cuda_compiler:
- None
cuda_compiler_version:
- None
cxx_compiler:
Expand All @@ -32,6 +30,8 @@ libfabric:
- '1.19'
libhwloc:
- 2.11.2
libpmix_devel:
- '5'
macos_machine:
- arm64-apple-darwin20.0.0
mpi_type:
Expand Down
2 changes: 2 additions & 0 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ mpi_type:
- conda
libfabric:
- "1.19"
libpmix_devel:
- "5"
12 changes: 6 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% set version = "5.0.7" %}
{% set major = version.rpartition('.')[0] %}
{% set cuda_major = (cuda_compiler_version|default("11.8")).rpartition('.')[0] %}
{% set build = 1 %}
{% set build = 2 %}

# give conda package a higher build number
{% if mpi_type == 'conda' %}
Expand Down Expand Up @@ -37,12 +37,12 @@ outputs:
- openmpi_{{ mpi_type }}
{% endif %}
ignore_run_exports_from:
- {{ compiler('cuda') }} # [cuda_compiler != "None"]
- {{ compiler('cuda') }} # [cuda_compiler_version != "None"]
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ compiler('cuda') }} # [cuda_compiler != "None"]
- {{ compiler('cuda') }} # [cuda_compiler_version != "None"]
- {{ compiler('fortran') }}
- {{ stdlib('c') }}
- pkg-config
Expand All @@ -55,14 +55,14 @@ outputs:
- zlib
- ucc # [linux and not ppc64le]
- ucx # [linux and not ppc64le]
- cuda-version {{ cuda_compiler_version }} # [cuda_compiler != "None"]
- cuda-version {{ cuda_compiler_version }} # [cuda_compiler_version != "None"]
run:
- mpi 1.0 openmpi
run_constrained:
# Open MPI only uses CUDA Driver APIs, set the minimal driver version
- __cuda >= {{ cuda_major ~ ".0" }} # [cuda_compiler != "None"]
- __cuda >= {{ cuda_major ~ ".0" }} # [cuda_compiler_version != "None"]
# Ensure a consistent CUDA environment
- cuda-version >= {{ cuda_major ~ ".0" }} # [cuda_compiler != "None"]
- cuda-version >= {{ cuda_major ~ ".0" }} # [cuda_compiler_version != "None"]
# conflict with prrte
# openmpi (starting with 6)
# bundles its own fork of prrte
Expand Down