A Framework for parametrized sweeps aimed for quantum simulations.
Project description
pyqsl provides a framework for running tasks as a function of different combinations of tasks input arguments. For example, pyqsl supports sweeping over any combination of the parameters, expanding the results of the task to numpy arrays of correct dimensions. Additionally, pyqsl provides a way to define relations between different task-parameters in order to construct complicated sweep spaces. The relations can be arbitrarily nested, and support different formats such as symbolic equations and lookuptables.
Installation
pyqsl is available through PyPI and can be installed with pip.
pip intall pyqsl
For manual installation, first clone the repository and enter the directory. There run
git clone https://github.com/ittnas/pyqsl.git pip install ./pyqsl
For running the examples, the additional requirements can be installed as
pip install pyqsl[examples]
Example
The following simple example demonstrates how pyqsl can be used to run tasks and sweep over model parameters. Let’s first create a simple cosine function which values we want to evalaute.
import pyqsl
import numpy as np
import matplotlib.pyplot as plt
def cosine(amplitude, phase, frequency, time):
return amplitude*np.cos(2*np.pi*(time*frequency + phase))
settings = pyqsl.Settings()
settings.amplitude = 2
settings.phase = np.pi
settings.frequency = pyqsl.Setting(relation='2*amplitude', unit='Hz')
settings.time = pyqsl.Setting(unit='s')
sweeps = {'amplitude': np.linspace(0, 1, 101), 'time': np.linspace(0, 5, 101)}
result = pyqsl.run(cosine, settings=settings, sweeps=sweeps)
result.dataset.data.plot()
plt.show()
This above calculates the value of the cosine function when the input parameters amplitude and time are varied. Additionally, there is a relation set for frequency, which sets its value to depend on amplitude so that cosine oscillates faster for higher amplitude values. Finally, the result is plotted using result.dataset.data.plot().
Development
For development, install also the tools needed for testing
pip install -e ./pyqsl[testing]
For automated document generation the library uses Sphinx. To generate the documentation install sphinx and then navigate to doc/ directory. To update the API doc strings, run
sphinx-apidoc -f -o source/ ../
and then build the docs with
make html
to generate the html documentation. The documentation can be found in doc/build/html.
Issues
There is a weird feature related to multiprocessing in windows. Every time a new process is spawned, the parent class is imported. This leads to an infinite loop if care is not taken. Therefore, every time pyqsl.core.simulation_loop is called, a main guard needs to be added, e.g.
if __name__=='__main__': result = pyqsl.run(simulation_task, settings, parallelize=True)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyqsl-3.0.tar.gz
.
File metadata
- Download URL: pyqsl-3.0.tar.gz
- Upload date:
- Size: 32.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eebaae3c021966113fd6094e5af55212a3c9135461d4cd2028d7331e31234314 |
|
MD5 | a19abb28e8a18f00302e9f0126502a2a |
|
BLAKE2b-256 | ef67570b9aa2c34b0320f6ebf03ffc1d6a37fb10992f2ba0b82904de6ffad3a3 |