Bruno Turcksin

Results 241 comments of Bruno Turcksin

The tests for spack are defined in `scripts/spack_test/test_list.def`: ``` example/tutorial/01_hello_world/hello_world.cpp example/tutorial/02_simple_reduce/simple_reduce.cpp example/tutorial/Algorithms/01_random_numbers/random_numbers.cpp example/tutorial/Advanced_Views/04_dualviews/dual_view.cpp ``` We don't really test anything except that the code does not crash.

Our nightly started to crash in March or April. I don't have a full history but a build from February 28th passed.

> Basically, is this behavior expected? Yes, it is expected. We should check that you run on the CPU when `mechanical` is true. Just to be sure, it only fails...

The host build should always work. I'll try to reproduce the issue. > Also, when running on the GPU things are really slow. The big issue with the GPU is...

@wd15 Let me hijack this issue since you've put some wall times. Part of deal.II can use vector instructions when you compile with `-march=native`. We cannot use that option in...

> Should the option be treated like a cmake flag and added [here](https://github.com/adamantine-sim/adamantine/blob/master/nix/adamantine/common.nix#L40) for example? Yes, exactly. You would need to add `-DCMAKE_CXX_FLAGS="-march=native"` both for the deal.II and the adamantine...

That's pretty disappointing. Thanks for trying it.

> Does your error message mean that we would need to disable GLIBCXX assertions for HIP like we do for CUDA? I didn't realize we were disabling GLIBCXX assertions in...