"O3" structure copy

"O3" structure copy

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

Did you know that this...

void my_copy(T &Out, const T &In)
{
Out = In;
}
void my_call(dense &Out, const dense &In)
{
map(my_copy)(Out, In);
}

...runs faster with extra cores than this...

void my_call(dense &Out, const dense &In)
{
Out = In;
}

...which doesn't speed up at all, even though these do the same thing.

- paul

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

Paul thanks - we're checking into it. --Amanda

Аватар пользователя AmandaS (Intel)

Paul, We've confirmed this issue and are working on a fix. Thanks for reporting it. --Amanda

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