ExaAdmm.jl icon indicating copy to clipboard operation
ExaAdmm.jl copied to clipboard

sync/wait in SQOPF.jl test

Open lukeli1990 opened this issue 1 year ago • 0 comments

Issue with #43: observe sync/wait in SQOPF test with ExaAdmm branch https://github.com/exanauts/ExaAdmm.jl/tree/bowen/qp

  • testing with ] test, SQOPF stuck with sync/wait error as error.txt
  • Running the following code block, SQOPF returns normally.
using SQP
using LinearAlgebra
using CUDA

case = "test/algorithms/case9.m"

#SQP with QP solver: ExaADMM with GPU
sqp1 = SQOPF.sqp_solve(case; itermax = 30, eps_inf = 1e-4, eps_res = 1e-4, eps_dir = 1e-4, pen = 5e5, TR = 10, lambda = 0.0, output_flag = 1, outer_iterlim=5000, rho_pq=5000.0, rho_va=5000.0, obj_scale=1.0, scale=1e-4, outer_eps=1e-4, verbose = 0, use_ipopt = false, use_feas_check = false, use_gpu = true, gpu_no = 1);

lukeli1990 avatar Apr 19 '23 20:04 lukeli1990