Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/FormatCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ on:
push:
branches:
- 'main'
tags:
- '*'
paths:
- '.github/workflows/FormatCheck.yml'
- '.JuliaFormatter.toml'
- '**.jl'
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/FormatCheck.yml'
- '.JuliaFormatter.toml'
- '**.jl'
types:
- opened
- reopened
Expand Down
18 changes: 12 additions & 6 deletions .github/workflows/Runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ on:
push:
branches:
- 'main'
paths-ignore:
- 'docs/**'
- 'examples/**'
paths:
- '.github/workflows/Runtests.yml'
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
pull_request:
branches:
- 'main'
paths-ignore:
- 'docs/**'
- 'examples/**'
paths:
- '.github/workflows/Runtests.yml'
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
types:
- opened
- reopened
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ on:
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/documentation.yml'
- 'src/**'
- 'ext/**'
- 'docs/**'
- 'examples/**'
- 'Project.toml'
types:
- opened
- reopened
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
.DS_Store
.vscode

*.jl.*.cov
*.jl.cov
*.jl.mem
Manifest.toml
docs/build/
docs/src/examples/

*.txt
*.jld2
*.json

*.py
*.ipynb
*.ipynb_checkpoints
**/*.ipynb_checkpoints
**/**/*.ipynb_checkpoints
25 changes: 25 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Contributor Covenant Code of Conduct

As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.

We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery
* Personal attacks
* Trolling or insulting/derogatory comments
* Public or private harassment
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
* Other unethical or unprofessional conduct

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.

This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the Contributor Covenant , version 1.2.0, available at https://www.contributor-covenant.org/version/1/2/0/code-of-conduct.html

[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/2/
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ HierarchicalEOM_QuantumToolboxExt = "QuantumToolbox"
[compat]
CUDA = "5"
DiffEqCallbacks = "2, 3"
FastExpm = "1.1.0"
JLD2 = "0.4.31"
FastExpm = "1.1"
JLD2 = "0.4.31 - 0.4"
LinearAlgebra = "<0.0.1, 1"
LinearSolve = "2.4.2"
OrdinaryDiffEq = "6.53.4"
LinearSolve = "2.4.2 - 2"
OrdinaryDiffEq = "6.53.4 - 6"
Pkg = "<0.0.1, 1"
PrecompileTools = "1"
ProgressMeter = "1.7"
Expand Down
6 changes: 3 additions & 3 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ QuantumToolbox = "6c2fb7c5-b903-41d2-bc5e-5a7c320b9fab"

[compat]
BenchmarkTools = "1.3"
Documenter = "0.27, 1"
Documenter = "1"
HierarchicalEOM = "1"
LaTeXStrings = "1"
LinearSolve = "2.4"
LinearSolve = "2"
Literate = "2"
OrdinaryDiffEq = "6.53"
OrdinaryDiffEq = "6"
Pardiso = "0.5"
Plots = "1"
QuantumOptics = "1"
Expand Down
9 changes: 0 additions & 9 deletions examples/benchmark_LS_solvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ UMFPACKFactorization();
# This solver performs better when there is less structure to the sparsity pattern (depends on the complexity of your system and baths).
KLUFactorization();

# ### Julia's built-in LU factorization
LUFactorization();

# ### A generic BICGSTAB implementation from Krylov
KrylovJL_BICGSTAB();

Expand All @@ -65,9 +62,6 @@ MKLPardisoIterate();
# ### KLUFactorization
@benchmark SteadyState(M_even; solver = KLUFactorization(), verbose = false)

# ### Julia's built-in generic LU factorization
@benchmark SteadyState(M_even; solver = LUFactorization(), verbose = false)

# ### KrylovJL_BICGSTAB
@benchmark SteadyState(M_even; solver = KrylovJL_BICGSTAB(rtol = 1e-10, atol = 1e-12), verbose = false)

Expand All @@ -84,9 +78,6 @@ MKLPardisoIterate();
# ### KLUFactorization
@benchmark DensityOfStates(M_odd, ados_s, d_up, ωlist; solver = KLUFactorization(), verbose = false)

# ### Julia's built-in LU factorization
@benchmark DensityOfStates(M_odd, ados_s, d_up, ωlist; solver = LUFactorization(), verbose = false)

# ### KrylovJL_BICGSTAB
@benchmark DensityOfStates(
M_odd,
Expand Down
Loading