Skip to content

Commit 9b4ea55

Browse files
committed
WIP: Should be reverted once UCS shared library dependencies get fixes
1 parent b41ff3e commit 9b4ea55

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

recipe/meta.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ outputs:
6363
script: run_test.sh
6464
files:
6565
- tests/helloworld.sh
66+
requires: # TODO: remove once UCX shlib deps get resolved
67+
- ucx # [enable_cuda]
6668

6769
- name: openmpi-mpicc
6870
build:
@@ -80,6 +82,8 @@ outputs:
8082
script: run_test.sh
8183
files:
8284
- tests/helloworld.c
85+
requires: # TODO: remove once UCX shlib deps get resolved
86+
- ucx # [enable_cuda]
8387

8488
- name: openmpi-mpicxx
8589
build:
@@ -97,6 +101,8 @@ outputs:
97101
script: run_test.sh
98102
files:
99103
- tests/helloworld.cxx
104+
requires: # TODO: remove once UCX shlib deps get resolved
105+
- ucx # [enable_cuda]
100106

101107
- name: openmpi-mpifort
102108
build:
@@ -114,6 +120,8 @@ outputs:
114120
files:
115121
- tests/helloworld.f
116122
- tests/helloworld.f90
123+
requires: # TODO: remove once UCX shlib deps get resolved
124+
- ucx # [enable_cuda]
117125
{% else %}
118126
- name: openmpi
119127
build:

recipe/run_test.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ if [[ $PKG_NAME == "openmpi" ]]; then
1717
command -v prte_info
1818
prte_info
1919

20-
if [[ ! -z "$(conda list | grep ucx)" ]]; then
21-
echo "Improper UCX dependency!"
22-
exit 1
23-
fi
20+
## TODO: re-enable after resolving UCX shlib dependencies
21+
## if [[ ! -z "$(conda list | grep ucx)" ]]; then
22+
## echo "Improper UCX dependency!"
23+
## exit 1
24+
## fi
2425
if [[ ! -z "$(conda list | grep cudatoolkit)" ]]; then
2526
echo "Improper cuda dependency!"
2627
exit 1

0 commit comments

Comments
 (0)