Skip to content

docs example: multilevel transmom + edits #166

docs example: multilevel transmom + edits

docs example: multilevel transmom + edits #166

Triggered via push December 11, 2023 22:08
Status Success
Total duration 22m 23s
Artifacts

CI.yml

on: push
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

11 warnings
Julia 1.9 - ubuntu-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, codecov/codecov-action@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Julia 1.8 - ubuntu-latest - x64 - push
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, codecov/codecov-action@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:26-61 ```@example quickstart using NamedTrajectories using QuantumCollocation # set time parameters T = 100 Δt = 0.1 # use the exported gate dictionary to get the gates we need σx = gate(:X) σy = gate(:Y) σz = gate(:Z) # define drift and drive Hamiltonians H_drift = 0.5 * σz H_drives = [σx, σy] # define target unitary U_goal = σx # set bound on the drive a_bound = 1.0 # build the problem prob = UnitarySmoothPulseProblem( H_drift, H_drives, U_goal, T, Δt; a_bound=a_bound, ) # solve the problem solve!(prob; max_iter=30) ``` value = UndefVarError: `gate` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:65-67 ```@example quickstart println("Final fidelity: ", unitary_fidelity(prob)) ``` value = UndefVarError: `prob` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:71-73 ```@example quickstart plot(prob.trajectory, [:Ũ⃗, :a]) ``` value = UndefVarError: `prob` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:83-97 ```@example quickstart # final fidelity constraint final_fidelity = 0.99 # weight on the minimum time objective D = 10.0 prob_min_time = UnitaryMinimumTimeProblem( prob; final_fidelity=final_fidelity, D=D ) solve!(prob_min_time; max_iter=30) ``` value = UndefVarError: `prob` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:101-103 ```@example quickstart println("Final fidelity: ", unitary_fidelity(prob_min_time)) ``` value = UndefVarError: `prob_min_time` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:107-114 ```@example quickstart initial_dur = times(prob.trajectory)[end] min_time_dur = times(prob_min_time.trajectory)[end] println("Initial duration: ", initial_dur) println("Minimum duration: ", min_time_dur) println("Duration decrease: ", initial_dur - min_time_dur) ``` value = UndefVarError: `prob` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
failed to run `@example` block in src/generated/quickstart.md:118-120 ```@example quickstart plot(prob_min_time.trajectory, [:Ũ⃗, :a]) ``` value = UndefVarError: `prob_min_time` not defined
Documentation: ../../../.julia/packages/Documenter/H5y27/src/Utilities/Utilities.jl#L34
18 docstrings not included in the manual: QuantumCollocation.Objectives.InfidelityRobustnessObjective :: Tuple{AbstractMatrix{<:Number}, NamedTrajectories.StructNamedTrajectory.NamedTrajectory} QuantumCollocation.Losses.isovec_unitary_fidelity :: Union{Tuple{AbstractVector, AbstractVector}, Tuple{AbstractVector, AbstractVector, Tuple{AbstractVector{Int64}, AbstractVector{Int64}}}} QuantumCollocation.Objectives.UnitaryInfidelityObjective :: Tuple{} QuantumCollocation.Constraints.NonlinearEqualityConstraint QuantumCollocation.Constraints.FinalQuantumStateFidelityConstraint :: Tuple{Symbol, Float64, NamedTrajectories.StructNamedTrajectory.NamedTrajectory} QuantumCollocation.Objectives.QuantumObjective :: Tuple{} QuantumCollocation.Problems.QuantumControlProblem QuantumCollocation.IpoptOptions.Options QuantumCollocation.Constraints.ComplexModulusContraint :: Tuple{Symbol, Float64, NamedTrajectories.StructNamedTrajectory.NamedTrajectory} QuantumCollocation.Constraints.ComplexModulusContraint :: Tuple{} QuantumCollocation.Losses.infidelity :: Tuple{AbstractVector, AbstractVector} QuantumCollocation.Constraints.EqualityConstraint QuantumCollocation.Constraints.FinalUnitaryFidelityConstraint :: Tuple{Symbol, Float64, NamedTrajectories.StructNamedTrajectory.NamedTrajectory} QuantumCollocation.Objectives.Objective QuantumCollocation.Constraints.constrain! :: Tuple{Ipopt.Optimizer, Vector{MathOptInterface.VariableIndex}, Vector{LinearConstraint}, NamedTrajectories.StructNamedTrajectory.NamedTrajectory} QuantumCollocation.Dynamics.QuantumDynamics QuantumCollocation.Constraints.NonlinearInequalityConstraint QuantumCollocation.Objectives.L1Regularizer :: Tuple{Symbol, NamedTrajectories.StructNamedTrajectory.NamedTrajectory} These are docstrings in the checked modules (configured with the modules keyword) that are not included in @docs or @autodocs blocks.
Documentation
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/