Francesco Biscani

Results 227 comments of Francesco Biscani

@justxi oh wow, with that env variable set it does work: ```console $ OCL_ICD_VENDORS=amdocl64.icd clinfo Number of platforms 1 Platform Name AMD Accelerated Parallel Processing Platform Vendor Advanced Micro Devices,...

Would it be possible instead to suppress the specific warning with a pragma or compiler flag for MSVC? ``#ifdef``-fing would certainly work, but I would like to avoid code repetition...

@andrewcorrigan in #314 I restored the original code (i.e., before #312) for the user-defined literals. I am not seeing any warnings/errors in the CI on MSVC 17.10. I also think...

@andrewcorrigan no worries, let me know how it goes.

Hi @dsriaditya999 ! The issue is that by calling ``pso_algo.set_bfe(pagmo::bfe{ pagmo::thread_bfe{} });`` you are specifically telling pagmo that it should use its own generic thread-based BFE implementation, rather than the...

Hi @dsriaditya999 , could you explain in a bit more detail what you mean when you say that only single thread processing happens? I.e., how have you been checking that...

Is there any chance your objective function is holding some lock that force serialised fitness evaluations? Do you see any multithreaded evaluation if you replace your current objective function with...

Hey @agseaton ! Thanks a lot for looking into this, I have been meaning to try to understand how to integrate scikit-core in the heyoka.py build system but never found...

> I noticed that cmake was choosing clang (18.1.6) as the compiler. When I changed it to gcc (11.4.0) it all just works. Are you mixing up different compilers when...

@agseaton this is a hard problem to tackle in general. For a complex C++ codebase, I do not think that going with the ``extern "C"`` route is feasible. In heyoka's...