Skip to content

Commit

Permalink
add arm to docker platform and minor changes in wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Erdmann authored and Marvin Erdmann committed Jan 23, 2025
1 parent f24a210 commit 3594c79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/container_build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ jobs:
context: .
push: true
# Start with a limited number of platforms
# ARM builds are (temporarily) removed in release 2.1.3 because pyqubo 1.5.0 is unavailable for this platform
# platforms: linux/amd64,linux/arm64
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
9 changes: 4 additions & 5 deletions src/modules/solvers/QiskitQAOA.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,8 @@ def get_parameter_options(self) -> dict:
},
"iterations": { # number measurements to make on circuit
"values": [1, 5, 10, 20, 50, 75],
"description": "How many iterations do you need? Warning: When using the IBM Eagle device you\
should only choose a low number of iterations, since a high number would lead to a waiting \
time that could take up to multiple days!"
"description": "How many iterations do you need? Warning: When using the IBM Eagle device you should "
"only choose a low number of iterations (long computation times)."
},
"depth": {
"values": [2, 3, 4, 5, 10, 20],
Expand All @@ -126,8 +125,8 @@ def get_parameter_options(self) -> dict:
},
"optimizer": {
"values": ["POWELL", "SPSA", "COBYLA"],
"description": "Which Qiskit solver should be used? Warning: When using the IBM Eagle device\
you should not use the SPSA optimizer for a low number of iterations!"
"description": "Which Qiskit solver should be used? Warning: When using the IBM Eagle device you should"
" not use the SPSA optimizer for a low number of iterations!"
}
}

Expand Down

0 comments on commit 3594c79

Please sign in to comment.