Nai-Yuan Chiang
Nai-Yuan Chiang
@cnpetra NlpSparse3_1 is an infeasible problem and it is expected to fail. I think it is fine since the last objective, `8.2842840e+01`, matches the recorded number.
On the platform with AMD GPU, some compiling error happened when `HIOP_BUILD_SHARED` is set to `ON`. The error message is `/opt/rocm-4.5.0/amdgcn/bitcode/hip.bc: file not recognized: file format not recognized` This error...
More details: When Cmake links libraries from hip toolchain, e.g., `target_link_libraries(hiop_hip INTERFACE hip::device Magma)` (Asher's approach) or `target_link_libraries(hiop_hip INTERFACE hip::hiprand roc::rocrand hip::hipfft roc::hipblas roc::rocblas hip::hipcub roc::rocprim_hip Magma )` (my modification...
The following Fortran examples are given: For sparse linear system: https://github.com/LLNL/hiop/blob/develop/src/Drivers/Sparse/NlpSparseExHS071.f https://github.com/LLNL/hiop/blob/develop/src/Drivers/Sparse/NlpSparseFEx1.f For dense linear system: https://github.com/LLNL/hiop/blob/develop/src/Drivers/Dense/NlpDenseConsFEx1.f
@CameronRutherford Thanks! This looks much better and clearer.
@cnpetra please have a look of `hiopKKTLinSysSparseCondensed.cpp`, especially the part where you add `delta_cc` to `delta_wx`.
@cnpetra all your comments have been addressed.
yes, you are correct. I am using the default setting which sets `linsol_mode` to `stable`. Probably we need a safeguard which set `linsol_mode` to `speculative` when CPU solver other than...
I met a bug in `RAJA::inclusive_scan` and I am not sure if it is relevant to this bug. In short, if I use Umpire to copy an array from host...
I can reproduce the problem with RAJA v0.13.0. However, I have problem to compile my code with RAJA v0.14, probably due to the new release of CAMP. Will send you...