Here you will learn the details that are needed in order to access and operate resources for this challenge. See moodys_challenge to read the challenge. Make sure to first read the instructions below.
While simulations and emulations of your program can be done locally on your computer, the Moody's challenge will require access to qBraid for quantum hardware.
So here are some guidelines:
- To launch these materials on qBraid, first fork this repository and click the above
Launch on qBraid
button. It will take you to your qBraid Lab with the repository cloned. - Once cloned, open terminal (click FILES in the left sidebar, then click the blue button with a symbol "➕", it is the first icon in the Other column in Launcher) and
cd
into this repo. Set the repo's remote origin using the git clone url you copied in Step 1, and then create a new branch for your team:
cd 2025-Moodys
git remote set-url origin <url>
git branch <team_name>
git checkout <team_name>
Use the environment manager (ENVS tab in the right sidebar) to install environment "Moody's IQuHACK 2025". The installation should take ~2 min.
- Once the installation is complete, go back to the Launcher to add a new ipykernel for "Moody's".
- From the FILES tab in the left sidebar, double-click on the
2024_Moodys
directory. - You are now ready to begin hacking, submitting jobs! Work with your team to complete the challenge listed above.
Please note, you will be provisioned credits before the hackathon for quantum hardwares. The following resources are provided in this challenge:
- IonQ Aria 1 Noisy Quantum Simulator (no time limit, qiskit syntax, other syntax)
- IBM hardware (10 minutes, syntax)
Strategize carefully and conduct back of the envelope estimates for your experiments before running.
For other questions or additional help using qBraid, see Lab User Guide, or reach out on the IQuHack qBraid Slack Channel.
Make sure that you devote some time to prepare a brief presentation (3-7 mins) showing your work. This presentation will be presented on Sunday.
We encourage you to show your experimental results, and your innovative solutions.
Qiskit circuit is used as an example here.
from qbraid.programs import load_program
from qbraid.runtime import QbraidProvider
from qbraid.transpiler.conversions.qiskit import qiskit_to_ionq
provider = QbraidProvider()
device = provider.get_device("ionq_simulator")
ionq_dict = qiskit_to_ionq(circuit, gateset="native")
program = load_program(ionq_dict)
run_input = program.serialize()
job = device.submit(run_input, shots=100, noise_model="aria-1")
The scoring criteria are as follows:
- 55% is based on the main quantum TDA workflow (steps 1~4).
- 40% is allocated to creativity and innovation, evaluated through the work on one of challenge from the BONUS section.
- 5% is assigned to presentation quality.