Created
May 22, 2025 06:02
-
-
Save btc-c0der/1c6cc280970f5a4d3f3b7a3dfefe3b12 to your computer and use it in GitHub Desktop.
CURSO - [00] Introdução QA Quântico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Introdução ao Quality Assurance aplicado a sistemas de computação quântica. | |
| Aqui, definimos objetivos, desafios e conceitos de verificação de circuitos e simulações. | |
| Este curso é voltado a QA Engineers que desejam atuar em startups quânticas ou labs como IBM Q, D-Wave, Rigetti, etc. | |
| """ | |
| print("Bem-vindo ao Quantum QA Bootcamp!") | |
| print("Você está pronto para testar o futuro? Vamos lá...") | |
| # Objetivos | |
| objetivos = [ | |
| "Entender o que é um circuito quântico e sua natureza probabilística", | |
| "Aprender a validar saídas de simulação QASM", | |
| "Criar testes automatizados para pipelines de Qiskit", | |
| "Identificar erros comuns em operações quânticas", | |
| "Simular testes em backends reais (quando disponíveis)" | |
| ] | |
| for i, objetivo in enumerate(objetivos, 1): | |
| print(f"{i}. {objetivo}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment