2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-02-05 00:58:41 +08:00
|
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if __AVX2__
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/command_queue/local_id_gen.inl"
|
|
|
|
#include "opencl/source/helpers/uint16_avx2.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-08-06 17:35:59 +08:00
|
|
|
#include <array>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2020-02-05 00:58:41 +08:00
|
|
|
template void generateLocalIDsSimd<uint16x16_t, 32>(void *b, const std::array<uint16_t, 3> &localWorkgroupSize, uint16_t threadsPerWorkGroup, const std::array<uint8_t, 3> &dimensionsOrder, bool chooseMaxRowSize);
|
|
|
|
template void generateLocalIDsSimd<uint16x16_t, 16>(void *b, const std::array<uint16_t, 3> &localWorkgroupSize, uint16_t threadsPerWorkGroup, const std::array<uint8_t, 3> &dimensionsOrder, bool chooseMaxRowSize);
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|
2020-02-05 00:58:41 +08:00
|
|
|
#endif
|