amgcl icon indicating copy to clipboard operation
amgcl copied to clipboard

C++ library for solving large sparse linear systems with algebraic multigrid method

Results 41 amgcl issues
Sort by recently updated
recently updated
newest added

In CmakeLists.txt, if OpenMP is found on the system, it is unconditionally enabled: https://github.com/ddemidov/amgcl/blob/c71ab45f911771c108b1842ea7cd11b62432bbf3/CMakeLists.txt#L60-L68 However, I may want to compile my application without OpenMP even though it is installed. Currently,...

In CMakeLists, boost is requires dependency: https://github.com/ddemidov/amgcl/blob/c71ab45f911771c108b1842ea7cd11b62432bbf3/CMakeLists.txt#L31-L35 although amgcl can works fine without boost with AMGCL_NO_BOOST preprocessor macro (without runtime interface). I can use amgcl by specifying include paths directly,...

[ 39%] Linking CXX executable solver_cuda /usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: CMakeFiles/solver_cuda.dir/solver_cuda_intermediate_link.o: in function `__cudaRegisterLinkedBinary_38_cuda_device_runtime_compute_86_cpp1_ii_8b1a5d37': link.stub:(.text+0xad): undefined reference to `__fatbinwrap_38_cuda_device_runtime_compute_86_cpp1_ii_8b1a5d37' collect2: error: ld returned 1 exit status Could you please help me out with...

Just came across this amazing repo, I was just wondering if there's any working Python interface for `amgcl`. Thank you so much!

I am wandering about what is the difference between the amgcl and nvidia AMGX.

Hello! I write a finite element system for my work, and I want to use amgcl to accelerate my system solving speed. but when I run the poisson3Db example or...

Hi I am trying to solve a complex number system with the ILU0 preconditioner (single level), the declaration is ```cpp typedef amgcl::backend::builtin< std::complex > Backend; typedef amgcl::make_solver< amgcl::relaxation::as_preconditioner, amgcl::solver::fgmres >...

I have a code writing with trillinos, and i want to call the amgcl routine from my trillinos code. Does amgcl supoor thtis?

I am running the parallel version of the possion3d problem, when i use the parmetis, it feeds back the error. `mpiexec -np 2 ./build/amgcl ./A.bin ./b.bin rows is :85623rows is...