alpaka-group / alpaka

Abstraction Library for Parallel Kernel Acceleration :llama:
https://alpaka.readthedocs.io
Mozilla Public License 2.0
353 stars 72 forks source link

Remove Obsolete #ifdefs from the examples #2233

Closed mehmetyusufoglu closed 8 months ago

mehmetyusufoglu commented 8 months ago

There were obsolete if defined clauses at the beginning of main() functions of 9 examples, they are removed by this MR. It is never triggered because ALPAKA_ACC_CPU_B_SEQ_T_SEQ_ENABLED always on at CI.

-// Fallback for the CI with disabled sequential backend
-#if defined(ALPAKA_CI) && !defined(ALPAKA_ACC_CPU_B_SEQ_T_SEQ_ENABLED)
-    return EXIT_SUCCESS;
-#else
...
...
#endif