A quick question: how can I get the current worker ID and the total number of workers?

A quick question: how can I get the current worker ID and the total number of workers?

Аватар пользователя Zhunping Zhang

Cannot find it in the language specifiaction (http://software.intel.com/file/40297), thanks!

2 posts / 0 новое
Последнее сообщение
Пожалуйста, обратитесь к странице Уведомление об оптимизации для более подробной информации относительно производительности и оптимизации в программных продуктах компании Intel.
Аватар пользователя Barry Tannenbaum (Intel)

That's because it's not part of the language specification. :o)

TheCilk RuntimeAPI is documented in the include files in the cilk directory. The information is in Doxygen format, which is pretty readable. See cilk/ReadMe.html for information for how to downloadDoxygen and use it to generate HTML pages (or other formats).

Anyway, the functions you're looking for are __cilkrts_get_worker_number() and __cilkrts_get_nworkers(). They're declared in cilk/cilk_api.h.

Warning:If you're using __cilkrts_get_worker_number() for anything that's not justcosmetic, you probably want to use a reducer instead.

- Barry

Зарегистрируйтесь, чтобы оставить комментарий.