Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opencl errors are node failures #362

Merged
merged 4 commits into from
Sep 20, 2023
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
3 changes: 2 additions & 1 deletion iceprod/server/plugins/condor_direct.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ async def upload_logfiles(self, task_id, dataset_id, submit_dir=None, reason='')
or 'Illegal instruction' in line
or ('Killed' in line and 'env-shell.sh' in line)
or ('python: command not found' in line and 'env-shell.sh' in line)
or 'py3-v4.1.1/RHEL_8_x86_64/lib/libCore.so.6.18: undefined symbol: usedToIdentifyRootClingByDlSym' in line):
or 'py3-v4.1.1/RHEL_8_x86_64/lib/libCore.so.6.18: undefined symbol: usedToIdentifyRootClingByDlSym' in line
or 'OpenCL ERROR: clGetPlatformIDs' in line):
payload_failure = False
break

Expand Down
10 changes: 5 additions & 5 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ asyncache==0.3.1
# via iceprod (setup.py)
babel==2.12.1
# via sphinx
boto3==1.28.46
boto3==1.28.51
# via iceprod (setup.py)
botocore==1.31.46
botocore==1.31.51
# via
# boto3
# s3transfer
Expand All @@ -33,7 +33,7 @@ cffi==1.15.1
# via cryptography
charset-normalizer==3.2.0
# via requests
cryptography==41.0.3
cryptography==41.0.4
# via
# iceprod (setup.py)
# pyjwt
Expand Down Expand Up @@ -124,7 +124,7 @@ sniffio==1.3.0
# httpx
snowballstemmer==2.2.0
# via sphinx
sphinx==7.2.5
sphinx==7.2.6
# via
# iceprod (setup.py)
# sphinxcontrib-applehelp
Expand All @@ -150,7 +150,7 @@ tornado==6.3.3
# via
# iceprod (setup.py)
# wipac-rest-tools
typing-extensions==4.7.1
typing-extensions==4.8.0
# via
# qrcode
# wipac-dev-tools
Expand Down
10 changes: 5 additions & 5 deletions requirements-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ asyncache==0.3.1
# via iceprod (setup.py)
beautifulsoup4==4.12.2
# via iceprod (setup.py)
boto3==1.28.46
boto3==1.28.51
# via
# iceprod (setup.py)
# moto
botocore==1.31.46
botocore==1.31.51
# via
# boto3
# moto
Expand All @@ -38,7 +38,7 @@ coverage[toml]==7.3.1
# via
# iceprod (setup.py)
# pytest-cov
cryptography==41.0.3
cryptography==41.0.4
# via
# iceprod (setup.py)
# moto
Expand Down Expand Up @@ -85,7 +85,7 @@ mccabe==0.7.0
# via flake8
mock==5.1.0
# via iceprod (setup.py)
moto==4.2.2
moto==4.2.3
# via iceprod (setup.py)
motor==3.3.1
# via iceprod (setup.py)
Expand Down Expand Up @@ -185,7 +185,7 @@ tornado==6.3.3
# wipac-rest-tools
types-pyyaml==6.0.12.11
# via responses
typing-extensions==4.7.1
typing-extensions==4.8.0
# via
# qrcode
# wipac-dev-tools
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ anyio==4.0.0
# via httpcore
asyncache==0.3.1
# via iceprod (setup.py)
boto3==1.28.46
boto3==1.28.51
# via iceprod (setup.py)
botocore==1.31.46
botocore==1.31.51
# via
# boto3
# s3transfer
Expand All @@ -29,7 +29,7 @@ cffi==1.15.1
# via cryptography
charset-normalizer==3.2.0
# via requests
cryptography==41.0.3
cryptography==41.0.4
# via
# iceprod (setup.py)
# pyjwt
Expand Down Expand Up @@ -111,7 +111,7 @@ tornado==6.3.3
# via
# iceprod (setup.py)
# wipac-rest-tools
typing-extensions==4.7.1
typing-extensions==4.8.0
# via
# qrcode
# wipac-dev-tools
Expand Down
Loading