This file contains 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
/* | |
* Intel ACPI Component Architecture | |
* AML Disassembler version 20140926-64 [Oct 16 2014] | |
* Copyright (c) 2000 - 2014 Intel Corporation | |
* | |
* Disassembly of DSDT.aml, Sat Apr 4 23:04:25 2015 | |
* | |
* Original Table Header: | |
* Signature "DSDT" | |
* Length 0x0000F4BB (62651) |
This file contains 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
/* | |
* Copyright ©2010-2014 Kris Maglione <maglione.k at Gmail> | |
* Distributable under the terms of the MIT license. | |
* | |
* Documentation is at the tail of this file. | |
*/ | |
"use strict"; | |
if (!("noscriptOverlay" in window)) { | |
if (!userContext.noscriptIgnoreMissing) |
This file contains 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
systemd |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#!/bin/sh | |
# SPDX-License-Identifier: GPL-3.0-only | |
# | |
# This file is part of the distrobox project: | |
# https://github.com/89luca89/distrobox | |
# | |
# Copyright (C) 2021 distrobox contributors | |
# | |
# distrobox is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU General Public License version 3 |
This file contains 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
qiskit>=1 | |
qiskit-terra>=1 |
This file contains 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
from math import pi | |
from time import perf_counter | |
from qiskit import QuantumCircuit, QuantumRegister, pulse, transpile | |
from qiskit.circuit import Gate | |
from qiskit.circuit.equivalence_library import SessionEquivalenceLibrary as sel | |
from qiskit.pulse.calibration_entries import CalibrationPublisher | |
from qiskit.transpiler import PassManager | |
from qiskit.transpiler.passes import ( | |
ApplyLayout, |