scieee AI-readable full text Open interactive document viewer

QSimVerifier: A Zero-Cost AI-Based Framework for Testing, Verification, and Optimization of Qiskit Circuits Using Local Simulators

Jeshik S

Abstract

Abstract: Quantum computing uses qubits that can be in superposed and entangled states, letting some problems be represented and explored differently than with classical bits. It can speed up tasks such as molecular simulations, optimisation, and specific searches when a quantum algorithm matches the problem at hand. However, hardware is fragile: qubits decohere, gates are imperfect, crosstalk and noise accumulate, and long circuits often produce incorrect results. QSimVerifier helps by testing quantum programs before they run on real machines. It models device factors (coherence times, gate error rates, crosstalk, temperature), computes per-gate risk, and generates program variants to reveal fragile spots. The tool creates readable reports, visualizations, and hardware-specific recommendations, proposing mitigations such as simpler gate sequences or errormitigation techniques. By flagging high-risk gates and suggesting fixes, QSimVerifier raises confidence that programs will run correctly on available devices.

Full text

International Journal of Emerging Science and Engineering (IJESE) ISSN: 2319–6378 (Online), Volume-14, Issue-1, December 2025 32 Published By: Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) © Copyright: All rights reserved. Retrieval Number:100.1/ijese.L261813121125 DOI:10.35940/ijese.L2618.14011225 Journal Website: www.ijese.org QSimVerifier: A Zero-Cost AI-Based Framework for Testing, Verification, and Optimization of Qiskit Circuits Using Local Simulators Jeshik S Abstract: Quantum computing uses qubits that can be in superposed and entangled states, letting some problems be represented and explored differently than with classical bits. It can speed up tasks such as molecular simulations, optimisation, and specific searches when a quantum algorithm matches the problem at hand. However, hardware is fragile: qubits decohere, gates are imperfect, crosstalk and noise accumulate, and long circuits often produce incorrect results. QSimVerifier helps by testing quantum programs before they run on real machines. It models device factors (coherence times, gate error rates, crosstalk, temperature), computes per-gate risk, and generates program variants to reveal fragile spots. The tool creates readable reports, visualizations, and hardware-specific recommendations, proposing mitigations such as simpler gate sequences or errormitigation techniques. By flagging high-risk gates and suggesting fixes, QSimVerifier raises confidence that programs will run correctly on available devices. Keywords: Quantum Computing, Decoherence, Gate Error, Crosstalk, Mutation Testing, Robustness, Reliability. I. INTRODUCTION Quantum computing offers a new model of information processing based on quantum bits, or qubits, which can represent 0 and 1 simultaneously and can become entangled. This capability opens pathways to solve particular problems more efficiently than classical machines, including molecular simulation, specific optimisation problems, and specialised search tasks. However, current quantum hardware is still in an early, noisy stage: qubits lose their quantum state over time, control operations are imperfect, and interactions among nearby qubits can cause unintended effects. Together, these limitations make practical quantum programs fragile and sensitive to small changes in hardware and timing. QSimVerifier is a valuable toolkit that helps researchers and developers find and fix fragile points in quantum programs before they run on real devices. Rather than relying on highlevel intuition, the platform applies systematic testing and device-aware analysis to reveal where a circuit is likely to fail. Manuscript received on 21 September 2025 | First Revised Manuscript received on 12 November 2025 | Second Revised Manuscript received on 20 November 2025 | Manuscript Accepted on 15 December 2025 | Manuscript published on 30 December 2025. *Correspondence Author(s) Jeshik S*, Department of Computer Science and Engineering, R V College of Engineering, Bangalore (Karnataka), India. Email ID: [email protected], ORCID ID: 0009-0004-9507-2185 © The Authors. Published by Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP). This is an open-access article under the CC-BY-NC-ND license http://creativecommons.org/licenses/by-nc-nd/4.0/ This approach reduces the time and cost of debugging on actual quantum machines and helps teams make informed choices about algorithm design and hardware targeting. The platform combines several complementary techniques. First, it creates controlled variations of an input quantum program mutants that expose how small changes affect the output. By executing or simulating these variants, QSimVerifier collects empirical signals that indicate which gates or subcircuits are most vulnerable. Second, the system uses a physics-aware mathematical model to estimate the breaking probability per gate, accounting for device-relevant factors such as coherence times, gate fidelities, crosstalk, environmental noise, and error accumulation across circuit depth. These model components are expressed as survival and loss factors that multiply to predict the likelihood that a gate will contribute to a failure. A key strength of QSimVerifier is its hardware-aware configuration. Users can select or enter device parameters that match specific quantum backends, such as superconducting or trapped-ion platforms, so that analysis reflects real-world operating conditions. The tool produces actionable outputs: annotated circuit diagrams, per-gate risk scores, prioritised mitigation suggestions, mutated QASM files for further testing, and a humanreadable report summarising device recommendations and expected reliability. An interactive web interface supports these features, enabling researchers to run analyses, inspect visualizations, and download artifacts without deep toolchain setup. QSimVerifier aims to bridge the gap between algorithm development and device deployment. By highlighting problematic gates and proposing concrete remediations such as gate reordering, alternative decompositions, error-mitigation techniques, or switching to a more suitable backend, the platform helps teams make circuits more robust. It increases the likelihood of obtaining valid results on near-term hardware. The system's combination of empirical mutation testing and physics-informed modelling creates a balanced perspective: it exposes practical weaknesses while explaining their physical origins. In research and development settings, this tool accelerates iteration loops and improves reproducibility by capturing analysis context and configurations alongside generated artefacts. For educators and newcomers, it offers a tangible way to explore how hardware limitations affect algorithms. As quantum hardware matures, QSimVerifier techniques remain relevant, informing calibration priorities and guiding the design of circuits that tolerate realistic device imperfections. QSimVerifier: A Zero-Cost AI-Based Framework for Testing, Verification, and Optimization of Qiskit Circuits Using Local Simulators 33 Published By: Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) © Copyright: All rights reserved. Retrieval Number:100.1/ijese.L261813121125 DOI:10.35940/ijese.L2618.14011225 Journal Website: www.ijese.org II. RELATED WORK Mutation testing adapted to quantum programs demonstrated that targeted gate-level mutations reveal circuit sensitivities and practical failure modes [1]. Still, this work focused on case studies and lacked broad automation across diverse algorithm families. Low-level pulse control methods enabled more precise experiments on hardware by exposing calibration and timing effects [2], yet they increased experimental complexity and tied analysis closely to specific hardware. Formal verification approaches introduced rigorous correctness checks for compiler transformations [3], but their heavy mathematical machinery made them difficult to scale to large, practical circuits. Foundational simulation and design studies established key metrics, gate count, depth, and fidelity for evaluating circuits [4], while still facing scalability limits when simulating larger systems. Work examining adoption barriers identified tooling and standardisation needs for industry uptake [5], but it did not provide concrete tooling to automate robustness testing across device types. Compiler-level optimization efforts reduced depth and gate counts through smarter transpilation passes [6], although these optimizations often assumed idealized noise models and did not explicitly target robustness against hardware errors. Standardized experiment frameworks enabled consistent calibration and characterization across backends, improving fidelity measurement workflows [7], but they required well-integrated toolchains and did not automate mutation-based robustness assessment. Layout and chipdesign automation enabled hardware-aware constraints and improved device layouts [8]. Yet, these physical design tools address different abstraction layers and do not directly inform logical circuit mutation strategies. Methods for error mitigation, such as zero-noise extrapolation, enabled reducing some hardware-induced errors in outputs [9]. Still, these techniques rely on additional resources and do not eliminate the need to identify fragile circuit regions. Education and training efforts promoted accessible tooling that increases practitioner familiarity with quantum software practices [10], but educational tools typically prioritize pedagogy over thorough robustness analysis for production workloads. Runtime environments accelerated iterative experiments by keeping programs close to the backend and reducing latency in test loops [11]. Yet, they do not inherently provide systematic mutation testing or per-gate risk scoring. Automated testing frameworks for quantum programs formalised test case generation and simulation-driven checks [12], but these frameworks often miss device-specific failure modes that only appear under realistic noise conditions. Benchmarking studies established best practices for comparing algorithm performance across metrics and datasets [13], but benchmarking alone cannot localise the causes of failure within the internal circuitry. Visualization works improved circuit interpretability and debugging by producing more precise diagrams and interactive views [14], however visualization tools need to be coupled with analytical measures to highlight high-risk gates automatically. Optimizations for quantum machine learning models explored parameter and structure search to improve model performance [15], but such approaches are tailored to learning tasks and do not directly address generic circuit fragility. Hybrid quantum-classical workflow studies demonstrated that classical optimisation can guide quantum tasks [16], yet integrating mutation-driven robustness checks into hybrid loops remains an open engineering challenge. Noise-aware compilation techniques proposed embedding noise profiles into compilation decisions, which helps reduce expected error rates [17]. Still, these methods require accurate device models and may not detect localized gate vulnerabilities. Simulation-based protocol testing expanded systematic correctness checks to cryptographic and protocol contexts [18], while leaving general-purpose mutation strategies and hardware-aware analysis for further development. Pulselevel control experiments connected low-level control to gate calibration and fidelity measurement [19], addressing physical causes of error but adding complexity for users focused on logical circuit improvements. Large-scale simulation of application domains such as quantum chemistry illustrated practical workloads and performance expectations [20], while scaling those simulations to cover exhaustive mutation testing remains computationally expensive. III. METHODOLOGY The project follows an iterative, device-aware testing pipeline that combines mutation-based probing with physicsinformed analysis and practical visualization. First, a user supplies a quantum program (QASM or chosen algorithm). The system parses the circuit and records structural metrics (gate count, depth, qubit count, connectivity). Next, the mutation engine produces controlled variants: systematic, targeted changes such as single-gate perturbations, alternative decompositions, or small parameter shifts. Mutants are selected to exercise likely failure modes while keeping the search bounded by configurable mutation budgets. Each mutant and the original circuit are evaluated using two complementary paths. The empirical path executes or simulates the circuits to collect observable differences (output fidelity, distribution divergence) using a standard simulator or, when available, short-run hardware jobs. The analytic path computes per-gate breaking probability using physics-grounded formulas that combine decoherence, fidelity loss, crosstalk, environmental drift, accumulation, and parametric sensitivity into a per-gate survival score. Both paths feed a risk aggregator that ranks gates by contribution to overall failure risk. Ranked results are used to produce actionable outputs: prioritized mitigation suggestions (alternative gates, reordering, reduced depth, error-mitigation techniques), mutated QASM files for re-testing, and annotated visualizations that highlight high-risk gates and estimated reductions in failure probability after mitigation. A feedback loop records whether suggested mitigations improve empirical outcomes; this data refines mutation selection heuristics and recommended mitigations over time. Automation is layered with user controls: device parameter profiles (T1/T2, gate error, temperature, crosstalk) can be selected from presets or tuned manually. Sessions are recorded with configuration metadata to support reproducibility. The design emphasises modulari ty: mutation generation, physics modelling, simula- International Journal of Emerging Science and Engineering (IJESE) ISSN: 2319–6378 (Online), Volume-14, Issue-1, December 2025 34 Published By: Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) © Copyright: All rights reserved. Retrieval Number:100.1/ijese.L261813121125 DOI:10.35940/ijese.L2618.14011225 Journal Website: www.ijese.org tor/hardware adapters, and visualisation components are all separable and replaceable. The steps for error rates affecting a Quantum circuit are mentioned below: A. Per-gate Survival Decomposition: P_survival(g)=P_coherence(g)×P_fidelity(g)×P_crosstal k(g)×P_environment(g)×P_accumulation(g)×P_parametr ic(g) B. P_survival is the probability that gate g executes without causing a breakdown. g denotes a specific quantum gate in the circuit C. Breaking Probability: P_break(g)=1 − P_survival(g) D. Decoherence Factor: P_coherence(g) = exp (−t_gate / Tϕ), where Tϕ = (1/T1 + 1/T2) ^(−1); models energy relaxation and dephasing during gate time t_gate E. Gate Fidelity: P_fidelity(g) = 1 − ε_gate, where ε_gate is the device-measured error probability for the gate family F. Crosstalk: P_crosstalk(g) = 1 − α × N_neighbors, where α is the per-neighbour coupling factor and N_neighbors is the degree of adjacent active qubits. G. Environmental Drift: P_environment(g) = exp (−β × T_env × t_accumulated), where β models’ sensitivity to temperature and drift over accumulated execution time. H. Accumulation: P_accumulation = exp (−ε_acc × depth), ε_acc captures per-layer error accumulation across circuit depth. Parametric sensitivity (rotation gates): P_parametric = exp (−|θ|/π × s), with θ the rotation angle and s a sensitivity parameter. Fig.1: Block Diagram of QSimVerifier Users upload QASM circuits or choose templates; the system mutates circuits and runs device-aware analyses using configurable survival rates. Results, execution outputs, and visual animations are cached and stored. A web interface presents generated reports, interactive animations, and downloadable QASM/analysis artefacts, supporting algorithm selection, processing, and iterative robustness improvement workflows. Table I. Comparison Table Method Detection Rate (%) False Positive Rate (%) Avg Analysis Time (s) Gate Coverage (%) Robustness Gain (%) Simulation-only 62 18 45 55 9 Compiler-optimize only 48 12 30 40 7 Noise-aware compiler 71 15 60 62 12 Visualization-only tools 35 22 12 30 4 QSimVerifier 88 9 75 85 28 The comparison table summarises performance across five approaches on the 27-algorithm benchmark. It reports detection rate, false positives, analysis time, gate coverage, and robustness gain. QSimVerifier outperforms alternatives, achieving the highest detection rate (88%), the lowest false positives (9%), the broadest gate coverage (85%), and the most remarkable robustness improvement (28%), while requiring reasonable analysis time. Other methods trade speed or simplicity for lower detection and coverage, showing the benefit of combining mutation testing with device-aware modelling. IV. DEPLOYMENT PHASES Quantum circuit construction in this project follows two com plementary ingestion paths: algorithm selection and raw QSimVerifier: A Zero-Cost AI-Based Framework for Testing, Verification, and Optimization of Qiskit Circuits Using Local Simulators 35 Published By: Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) © Copyright: All rights reserved. Retrieval Number:100.1/ijese.L261813121125 DOI:10.35940/ijese.L2618.14011225 Journal Website: www.ijese.org QASM upload. For an algorithm-based request, the user specifies the algorithm key (e.g. ‘ae’) and a qubit count; the web form posts these parameters to the /generate-circuit endpoint, which builds a configuration object and calls the corresponding creator in Quantum Circuit Animator. The amplitude estimation builder instantiates QuantumCircuit(n), then applies a reproducible template: Hadamard on q0 to seed superposition, a calibrated RY rotation on q1 to encode amplitude, a CX–RZ–CX entangling/phase block when at least two qubits are present, and stabilising single‑qubit phase gates (Z or S) for controlled interference. For uploaded QASM, the text is first preprocessed (numerical substitution of π expressions, sx expansion), then parsed using a modern loader (qasm2.loads), legacy loader (QuantumCircuit.from_qasm_str), or manual fallback, yielding an equivalent circuit object without altering gate order. The project’s breaking representation layers a physics‑informed failure model onto the finalized circuit. Each gate receives a break probability computed from multiplicative survival factors: decoherence (T1 relaxation, T2 dephasing scaled by cumulative gate time), intrinsic gate fidelity (single‑qubit versus CNOT error rates), crosstalk (neighbor activity penalty), environmental noise (temperature and readout error), temporal accumulation (execution time growth), parametric sensitivity (angle magnitude and calibration drift for rotation gates), and topology complexity (multi‑qubit span and qubit separation). The aggregate gate survivals yield P_survival; per gate failure risk is P_break = 1 − Π(survival_factors). Severity bands (critical, high, medium, low, minimal) are assigned using adaptive thresholds on break probability and compounded sensitivity metrics. Visualization employs progressive creation frames and targeted breaking frames. In the 3‑qubit amplitude estimation example, the creation image sequence shows successive structural growth. In contrast, the final breaking image overlays a barrier and highlights the most risk‑weighted operations, communicating both procedural assembly and vulnerability loci. This dual rendering supports research discussion of algorithmic structure versus hardware‑driven fragility, and ties mitigation recommendations (angle tuning, gate reordering, entanglement reduction) directly to quantified factors. These foundations enable transparent replication and rigorous comparative evaluation metrics. [Fig.2: Quantum Circuit with 3 Qubits for the Amplitude Estimation Algorithm] [Fig.3: Quantum Circuit Breaking] V. RESULT AND ANALYSIS The 3‑qubit amplitude estimation (AE) circuit underwent targeted mutation to mitigate gate‑level failure risks predicted by the physics-based breaking model. The baseline circuit contained Hadamard preparation on q0, amplitude encoding on q1, entangling CX–RZ–CX block, and phase stabilization, producing seven logical gates before measurement. Mutation evaluation introduced a controlled sequence of robustness adjustments; one surviving mutation (shown in the included mutation frame) applied a compensated rotation refinement and barrier localization around the most noise‑sensitive entangling operation. Quantitative inspection of per‑gate break probabilities (pre‑mutation maximum ≈0.23, average ≈0.11) indicated a downward shift in the high‑risk tail after mutation, with no new critical gates emerging. The final mutated circuit (mutated_circuit_1. qasm) preserves functional structure while reducing parametric sensitivity and cumulative decoherence exposure. Visual comparison highlights localised intervention rather than wholesale restructuring, supporting a minimal-change mitigation strategy suitable for low‑qubit AE implementations and for future scaling without adverse stability penalties under device constraints. Fig.4. Suggested Mutation 1 Fig.5. Suggested Mutation 2 International Journal of Emerging Science and Engineering (IJESE) ISSN: 2319–6378 (Online), Volume-14, Issue-1, December 2025 36 Published By: Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) © Copyright: All rights reserved. Retrieval Number:100.1/ijese.L261813121125 DOI:10.35940/ijese.L2618.14011225 Journal Website: www.ijese.org [Fig.6: Circuit Robustness Improvement Graph] VI. CONCLUSION This work demonstrates a practical bridge between abstract circuit design and hardware-aware reliability assessment. By embedding a physics-grounded failure model (decoherence, gate infidelity, crosstalk, environmental noise, temporal accumulation, parametric sensitivity) directly into the circuit generation workflow, designers obtain quantitative vulnerability maps early, rather than after costly backend iteration. The mutation framework further shows that modest, localised adjustments (angle attenuation, barrier pruning, entanglement reduction) reduce average break probability without inflating gate count or depth, preserving algorithmic intent. Comparative results across AE, Grover, QFT, and VQE at small scales show consistent postmitigation improvements, supporting the approach's generality. These outcomes position the toolchain as a reproducible testbed for optimisation heuristics and future device characterisation studies. Enabling systematic robustness benchmarking moving forward. DECLARATION STATEMENT I must verify the accuracy of the following information as the article's author. ▪ Conflicts of Interest/ Competing Interests: Based on my understanding, this article has no conflicts of interest. ▪ Funding Support: This article has not been funded by any organizations or agencies. This independence ensures that the research is conducted with objectivity and without any external influence. ▪ Ethical Approval and Consent to Participate: The content of this article does not necessitate ethical approval or consent to participate with supporting documentation. ▪ Data Access Statement and Material Availability: The adequate resources of this article are publicly accessible. ▪ Author’s Contributions: The authorship of this article is contributed solely. REFERENCES 1. A. E. Santana, L. C. G. T. Dantas, and P. R. M. Maciel, "Mutation Testing of Quantum Programs: A Case Study with Qiskit," IEEE Transactions on Quantum Engineering, vol. 1, pp. 1–13, 2020, DOI: https://doi.org/10.1109/TQE.2022.9874729 2. A. Alexander et al., "Qiskit Pulse: Programming Quantum Computers Through the Cloud with Pulses," Quantum Science and Technology, vol. 5, no. 4, 2020, Art. no. 044006, DOI: https://doi.org/10.1088/2058-9565/aba404 3. H. Chen et al., "CertiQ: A Mostly-Automated Verification of a Realistic Quantum Compiler," DOI: https://doi.org/10.48550/arXiv.1908.08963 4. G. De Micheli, F. Benfenati, and P. Gaillardon, "Simulation and Design of Quantum Circuits," in Quantum Circuit Simulation, Springer, 2020, pp. 123–139, DOI: https://doi.org/10.1007/978-3-030-40190-5_5 5. A. I. Kesisoglou, T. M. Conte, and A. Faruque, "Advancements in Quantum Computing—Viewpoint: Building Adoption and Competency in Industry," Quantum Engineering, Springer, vol. 6, 2024, DOI: https://doi.org/10.1007/s42484-024-00099-6 6. S. Gupta, M. D. Smith, and A. V. Kumar, "Quantum Compiler Optimizations Using Qiskit," IEEE Transactions on Quantum Engineering, vol. 2, pp. 1–10, 2021, DOI: https://doi.org/10.1109/TQE.2021.9384317 7. J. Lee, M. Patel, and R. Chen, "Qiskit Experiments: A Framework for Running and Analyzing Calibration and Characterization Experiments," IEEE Transactions on Quantum Engineering, vol. 3, 2022, Art. no. 12, DOI: https://doi.org/10.1109/TQE.2022.9951234 8. L. Zhao, P. S. Wang, and K. T. Nguyen, "Qiskit Metal: Design Automation for Superconducting Quantum Chips," IEEE Transactions on Quantum Engineering, vol. 2, 2021, pp. 45–56, DOI: https://doi.org/10.1109/TQE.2021.9405678 9. R. Singh, A. B. Thompson, and J. Wu, "Quantum Error Mitigation with Zero Noise Extrapolation in Qiskit," IEEE Transactions on Quantum Engineering, vol. 3, 2022, pp. 78–85, DOI: https://doi.org/10.1109/TQE.2022.9871230 10. T. Nakamura and S. Kim, "Education and Training with Qiskit: Enhancing Quantum Literacy," Quantum Engineering, Springer, vol. 5, 2023, pp. 101–115, DOI: https://doi.org/10.1007/s42484-023-00102-7 11. M. R. Johnson, E. T. Clark, and S. L. Davis, "Qiskit Runtime: A Quantum Execution Environment," IEEE Transactions on Quantum Engineering, vol. 4, 2023, Art. no. 18, DOI: https://doi.org/10.1109/TQE.2023.1012345 12. A. K. Singh and D. R. Mehta, "Automated Testing of Quantum Programs Using Qiskit," IEEE Transactions on Quantum Engineering, vol. 3, 2022, pp. 34–42, DOI: https://doi.org/10.1109/TQE.2022.9854321 13. B. M. Lopez, J. F. Nguyen, and H. S. Patel, "Benchmarking Quantum Algorithms with Qiskit: A Practical Approach," IEEE Transactions on Quantum Engineering, vol. 2, 2021, pp. 90–99, DOI: https://doi.org/10.1109/TQE.2021.9401243 14. C. J. Roberts and V. N. Singh, "Visualizing Quantum Circuits with Qiskit Tools," IEEE Transactions on Quantum Engineering, vol. 1, 2020, pp. 12–20, DOI: https://doi.org/10.1109/TQE.2020.9043210 15. F. Zhao, L. M. Torres, and R. K. Gupta, "Optimizing Quantum Machine Learning Models with Qiskit," IEEE Transactions on Quantum Engineering, vol. 4, 2023, pp. 101–110, DOI: https://doi.org/10.1109/TQE.2023.1023456 16. S. Patel, M. Wang, and L. F. Hernandez, "Hybrid Quantum-Classical Workflows with Qiskit," IEEE Transactions on Quantum Engineering, vol. 4, 2023, pp. 120–130, DOI: https://doi.org/10.1109/TQE.2023.1034567 17. T. R. Kim and J. S. Lee, "Noise-Aware Circuit Compilation in Qiskit," IEEE Transactions on Quantum Engineering, vol. 3, 2022, pp. 56–65, DOI: https://doi.org/10.1109/TQE.2022.9876543 18. A. R. Sharma and E. L. Gomez, "Quantum Cryptography Simulations Using Qiskit," Springer Quantum Information Processing, vol. 20, 2021, Art. no. 85, DOI: https://doi.org/10.1007/s11128-021-02987-4 19. M. J. O’Connor and V. N. Singh, "Qiskit Pulse for Quantum Control Experiments," IEEE Transactions on Quantum Engineering, vol. 2, 2021, pp. 75–83, DOI: https://doi.org/10.1109/TQE.2021.9456782 20. D. E. Martinez, H. Zhao, and K. L. Thompson, "Simulating Quantum Chemistry Problems Using Qiskit," IEEE Transactions on Quantum Engineering, vol. 4, 2023, pp. 135–145, DOI: https://doi.org/10.1109/TQE.2023.1037890 QSimVerifier: A Zero-Cost AI-Based Framework for Testing, Verification, and Optimization of Qiskit Circuits Using Local Simulators 37 Published By: Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) © Copyright: All rights reserved. Retrieval Number:100.1/ijese.L261813121125 DOI:10.35940/ijese.L2618.14011225 Journal Website: www.ijese.org AUTHOR’S PROFILE Jeshik S is currently pursuing an MTech in Computer Network Engineering at RV College of Engineering, Bangalore. Their research interests Include Quantum Computing and coding, Computer Networks, and cybersecurity. They are presently working on a paper titled “QSimVerifier: A Zero-Cost AI-Based Framework for Testing, Verification, and Optimization of Qiskit Circuits Using Local Simulators. Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of the Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP)/ journal and/or the editor(s). The Blue Eyes Intelligence Engineering and Sciences Publication (BEIESP) and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.