Skip to content

Commit

Permalink
Merge pull request #6 from minrk/build_number
Browse files Browse the repository at this point in the history
need build number in build string
  • Loading branch information
j34ni authored Oct 22, 2024
2 parents 17bf52f + 919a86e commit 1d1a8d4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% set version = "3.0" %}
{% set build = 2 %}
{% set netmod_variant = netmod if netmod else "default" %}

package:
Expand All @@ -10,8 +11,8 @@ source:
sha256: ee076c4e672d18d6bf8dd2250e4a91fa96aac1db2c788e4572b5513d86936efb

build:
number: 1
string: "h{{ PKG_HASH }}_{{ netmod_variant }}"
number: {{ build }}
string: "{{ netmod_variant }}_h{{ PKG_HASH }}_{{ build }}"
skip: true # [win or osx]
run_exports:
- {{ pin_subpackage('mvapich', max_pin='x.y') }}
Expand Down Expand Up @@ -61,8 +62,8 @@ about:
### Selecting Netmods: OFI or UCX
MVAPICH supports two high-level network modules (netmods), namely OFI and UCX:
- For the OFI netmod, use: `conda install conda-forge::mvapich=*=*_ofi`
- For the UCX netmod, use: `conda install conda-forge::mvapich=*=*_ucx`
- For the OFI netmod, use: `conda install conda-forge::mvapich=*=ofi_*`
- For the UCX netmod, use: `conda install conda-forge::mvapich=*=ucx_*`
These commands will install the MVAPICH package configured with the desired netmod.
Expand Down

0 comments on commit 1d1a8d4

Please sign in to comment.