Skip to content

Commit e18097d

Browse files
authored
auto updates (#6374)
Signed-off-by: monai-bot <monai.miccai2019@gmail.com>
1 parent b356fec commit e18097d

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/pythonapp-gpu.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,10 @@ jobs:
103103
python -m pip install --upgrade pip wheel
104104
# fixes preinstalled ruamel_yaml error from the docker image
105105
rm -rf $(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")/ruamel*
106+
rm -rf $(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")/llvmlite* #6377
106107
python -m pip install ${{ matrix.pytorch }}
107108
python -m pip install -r requirements-dev.txt
108109
python -m pip list
109-
DRIVER_VERSION=$(cat /proc/driver/nvidia/version | head -1 | awk -F' ' '{print $8}')
110-
ls -ltr /usr/lib/x86_64-linux-gnu/libcuda* && ln -fs /usr/lib/x86_64-linux-gnu/libcuda.so.$DRIVER_VERSION /usr/lib/x86_64-linux-gnu/libcuda.so.1 || true
111-
ls -ltr /usr/lib64/libcuda* && ln -fs /usr/lib64/libcuda.so.$DRIVER_VERSION /usr/lib64/libcuda.so.1 || true
112110
- name: Run quick tests (GPU)
113111
if: github.event.pull_request.merged != true
114112
run: |

monai/apps/auto3dseg/ensemble_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def set_infer_files(self, dataroot: str, data_list_or_path: str | list, data_key
9494
datalist = ConfigParser.load_config_file(data_list_or_path)
9595
if data_key in datalist:
9696
self.infer_files, _ = datafold_read(datalist=datalist, basedir=dataroot, fold=-1, key=data_key)
97-
elif hasattr(self, "rank") and self.rank == 0: # type: ignore
97+
elif hasattr(self, "rank") and self.rank == 0:
9898
logger.info(f"Datalist file has no testing key - {data_key}. No data for inference is specified")
9999

100100
else:

0 commit comments

Comments
 (0)