pyqrack 1.29.0__py3-none-win_amd64.whl → 1.72.5__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pyqrack/__init__.py CHANGED
@@ -1,13 +1,20 @@
1
- # (C) Daniel Strano and the Qrack contributors 2017-2021. All rights reserved.
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
2
  #
3
3
  # Use of this source code is governed by an MIT-style license that can be
4
4
  # found in the LICENSE file or at https://opensource.org/licenses/MIT.
5
5
 
6
- from .qrack_system import QrackSystem, Qrack
7
- from .qrack_simulator import QrackSimulator
8
- from .qrack_neuron import QrackNeuron
9
- from .qrack_circuit import QrackCircuit
10
6
  from .pauli import Pauli
11
7
  from .neuron_activation_fn import NeuronActivationFn
12
8
  from .quimb_circuit_type import QuimbCircuitType
13
- from .util import convert_qiskit_circuit_to_qasm_experiment
9
+ from .qrack_ace_backend import QrackAceBackend
10
+ from .qrack_circuit import QrackCircuit
11
+ from .qrack_neuron import QrackNeuron
12
+ from .qrack_neuron_torch_layer import (
13
+ QrackTorchNeuron,
14
+ QrackNeuronFunction,
15
+ QrackNeuronTorchLayer,
16
+ )
17
+ from .qrack_simulator import QrackSimulator
18
+ from .qrack_stabilizer import QrackStabilizer
19
+ from .qrack_system import QrackSystem, Qrack
20
+ from .stats.quantize_by_range import quantize_by_range
@@ -1,4 +1,4 @@
1
- # (C) Daniel Strano and the Qrack contributors 2017-2021. All rights reserved.
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
2
  #
3
3
  # Pauli operators are specified for "b" (or "basis") parameters.
4
4
  #
@@ -11,7 +11,7 @@ from enum import IntEnum
11
11
  class NeuronActivationFn(IntEnum):
12
12
  # Default
13
13
  Sigmoid = 0
14
- # Rectified linear
14
+ # Rectified linear
15
15
  ReLU = 1
16
16
  # Gaussian linear
17
17
  GeLU = 2
pyqrack/pauli.py CHANGED
@@ -1,4 +1,4 @@
1
- # (C) Daniel Strano and the Qrack contributors 2017-2021. All rights reserved.
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
2
  #
3
3
  # Pauli operators are specified for "b" (or "basis") parameters.
4
4
  #