You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>using AMGX
[NVBLAS] NVBLAS_CONFIG_FILE environment variable is NOT set : relying on default config filename 'nvblas.conf'
[NVBLAS] Cannot open default config file 'nvblas.conf'
[NVBLAS] Config parsed
[NVBLAS] CPU Blas library need to be provided
julia>try
AMGX.initialize()
AMGX.initialize_plugins()
catch e
AMGX.finalize_plugins()
AMGX.finalize()
AMGX.initialize()
AMGX.initialize_plugins()
end
AMGX version 2.1.0.131-opensource
Built on Jan 202021, 13:08:41
Compiled with CUDA Runtime 10.0, using CUDA driver 11.7
julia> config = AMGX.Config(Dict("monitor_residual"=>1, "max_iters"=>1, "store_res_history"=>1, "tolerance"=>1))
AMGX.Config @0x000000000242a910
julia> resources = AMGX.Resources(config)
AMGX.Resources @0x0000000019828ef0
julia> solver = AMGX.Solver(resources, AMGX.dDDI, config)
AMGX.Solver @0x000000001d9426a0 dDDI
julia> device_matrix = AMGX.AMGXMatrix(resources, AMGX.dDDI)
AMGX.AMGXMatrix @0x0000000001ec7710 dDDI
all seems OK. But if I finalize and close everything and start a new Julia session and run the above again but now I just modify the last matrix element then I get this error:
I'm getting a really strange error. I run:
Then if I give:
all seems OK. But if I finalize and close everything and start a new Julia session and run the above again but now I just modify the last matrix element then I get this error:
Any ideas?
cc @elise-palethorpe
The text was updated successfully, but these errors were encountered: