Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export scalar methods (amend last PR) #31

Merged
merged 1 commit into from
Aug 30, 2022
Merged
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
5 changes: 4 additions & 1 deletion src/ComplexSPSA.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ export PaperPlot

# Optimzers
export SPSA_on_complex, CSPSA # First order

export SPSA2_on_complex, CSPSA2 # Second order
export MCSPSA2, CSPSA2_full, CSPSA2_scalar # (Experimental) second order
export SPSA2_scalar_on_complex, CSPSA2_scalar # Scalar Second order
export MCSPSA2, CSPSA2_full #

export SPSA_QN_on_complex, CSPSA_QN # Natural gradient
export SPSA_QN_scalar_on_complex, CSPSA_QN_scalar # Scalar Natural gradient

# Tools
export squeeze, apply_along_dim, simulate_experiment

Expand Down