blob: 4dd7893ec9b82fef3a2b791dfc5ebbf5207cf8a1 [file] [log] [blame]
/*
* Copyright (c) 2014 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#if __OPENCL_C_VERSION__ >= 200
#include "devenq.h"
// Currently we have no information about the block with
// which to make block specific decisions. Therefore these
// library calls corresponding to all of the possible
// get_kernel_* built in functions have no argument at all
// and return a reasonable constant
__attribute__((always_inline)) uint
__get_kernel_work_group_size_internal(void)
{
return (uint)CL_DEVICE_MAX_WORK_GROUP_SIZE;
}
__attribute__((always_inline)) uint
__get_kernel_preferred_work_group_size_multiple_internal(void)
{
return 64U;
}
#endif