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
6 changes: 5 additions & 1 deletion .github/workflows/gpu-hvd-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
pytorch-channel: [pytorch]
fail-fast: false
env:
DOCKER_IMAGE: "pytorch/conda-builder:cuda12.1"
DOCKER_IMAGE: "pytorch/almalinux-builder:cuda12.8"
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: linux.8xlarge.nvidia.gpu
Expand Down Expand Up @@ -113,6 +113,10 @@ jobs:
pip install -r requirements-dev.txt
pip install -e .

# Upgrade pyOpenSSL to avoid issue:
# AttributeError: module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'. Did you mean: 'X509_V_FLAG_EXPLICIT_POLICY'?
pip install -U pyOpenSSL

EOF
)

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
pytorch-channel: [pytorch, pytorch-nightly]
fail-fast: false
env:
DOCKER_IMAGE: "pytorch/almalinux-builder:cuda12.4"
DOCKER_IMAGE: "pytorch/almalinux-builder:cuda12.8"
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: linux.g4dn.12xlarge.nvidia.gpu
Expand Down Expand Up @@ -113,6 +113,10 @@ jobs:
pip install -r requirements-dev.txt
pip install -e .

# Upgrade pyOpenSSL to avoid issue:
# AttributeError: module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'. Did you mean: 'X509_V_FLAG_EXPLICIT_POLICY'?
pip install -U pyOpenSSL

EOF
)

Expand Down
2 changes: 1 addition & 1 deletion tests/ignite/distributed/test_auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def test_dist_proxy_sampler():
DistributedProxySampler(None)

with pytest.raises(TypeError, match=r"Argument sampler should have length"):
DistributedProxySampler(Sampler([1]))
DistributedProxySampler(Sampler())

with pytest.raises(TypeError, match=r"Argument sampler must not be a distributed sampler already"):
DistributedProxySampler(DistributedSampler(sampler, num_replicas=num_replicas, rank=0))
Loading