bosilca

Results 318 comments of bosilca

The title might not reflect it clearly, but this is not what the issue is. The issue here is that recursive will indeed run only on the CPU, but it...

1. A correct execution of a correct implementation should not depend on the number of compute resource used. Once the DAG of tasks is built, there are clear way of...

I suggest you compile parsec in debug mode (--enable-debug to configure, or -DPARSEC_DEBUG to cmake) and then create the file `${HOME}/.parsec/mca-params.conf` and add inside ```txt debug_verbose = 100 dtd_traversal_info =...

The problem here is not the runtime, but the memory access pattern and their interaction with the hardware cache coherence protocol. The output from task0 is used as an input...

I confirm, by default the dot file is generated in the same directory where the binary executable is located. If you want to change this default behavior you need to...

@cheng-hsiang-chiu please check [this paper](https://dl.acm.org/doi/abs/10.1145/3148226.3148233?casa_token=jCD3qX8KtLQAAAAA:3JpO7PTzQPPuNbmQ2LjzhnuWwDALDyd_OWmRWmNU7_xvNLbIjJv7DkxKv9WPU7oaCQBTMvL1hEg3nA) to understand the limitations of the `insert_task` programming paradigm (which is the base of DTD but also of StarPU and other runtimes). It will give...

Looks very basic, but for now it should do. The real issue is that we need to link this with the MCA params, or have to double check everywhere of...

As discussed on 03/31/23 we need to add a property to the PTG tasks to indicate the core/device they want to be executed on.

Please try again now that #488 has been merged.

We were careful not to touch the taskpool on the way out of the callback, but now we need to go back into the termdet who might still have a...