From 8e5570a3073b73c0af0370c36ce12fa5b7dac773 Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Sun, 24 Sep 2023 12:49:29 -0500 Subject: [PATCH] [Tests] Update gpu.jl --- test/gpu/gpu.jl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/gpu/gpu.jl b/test/gpu/gpu.jl index fbe3dbe77..1edbf9cc0 100644 --- a/test/gpu/gpu.jl +++ b/test/gpu/gpu.jl @@ -13,30 +13,30 @@ function test_processes(S, M) cpu_A, cpu_b = symmetric_indefinite(n, FC=FC) gpu_A, gpu_b = M(cpu_A), S(cpu_b) - V, T = hermitian_lanczos(gpu_A, gpu_b, k) + V, β, T = hermitian_lanczos(gpu_A, gpu_b, k) cpu_A, cpu_b = nonsymmetric_definite(n, FC=FC) cpu_c = -cpu_b gpu_A, gpu_b, gpu_c = M(cpu_A), S(cpu_b), S(cpu_c) - V, T, U, Tᴴ = nonhermitian_lanczos(gpu_A, gpu_b, gpu_c, k) + V, β, T, U, γᴴ, Tᴴ = nonhermitian_lanczos(gpu_A, gpu_b, gpu_c, k) cpu_A, cpu_b = nonsymmetric_indefinite(n, FC=FC) gpu_A, gpu_b = M(cpu_A), S(cpu_b) - V, H = arnoldi(gpu_A, gpu_b, k) + V, β, H = arnoldi(gpu_A, gpu_b, k) cpu_A, cpu_b = under_consistent(m, n, FC=FC) gpu_A, gpu_b = M(cpu_A), S(cpu_b) - V, U, L = golub_kahan(gpu_A, gpu_b, k) + V, U, β, L = golub_kahan(gpu_A, gpu_b, k) cpu_A, cpu_b = under_consistent(m, n, FC=FC) _, cpu_c = over_consistent(n, m, FC=FC) gpu_A, gpu_b, gpu_c = M(cpu_A), S(cpu_b), S(cpu_c) - V, T, U, Tᴴ = saunders_simon_yip(gpu_A, gpu_b, gpu_c, k) + V, β, T, U, γᴴ, Tᴴ = saunders_simon_yip(gpu_A, gpu_b, gpu_c, k) cpu_A, cpu_b = under_consistent(m, n, FC=FC) cpu_B, cpu_c = over_consistent(n, m, FC=FC) gpu_A, gpu_B, gpu_b, gpu_c = M(cpu_A), M(cpu_B), S(cpu_b), S(cpu_c) - V, H, U, F = montoison_orban(gpu_A, gpu_B, gpu_b, gpu_c, k) + V, β, H, U, γ, F = montoison_orban(gpu_A, gpu_B, gpu_b, gpu_c, k) end function test_solver(S, M)