5b5c78b4e6
ECR #304775 - Cleanup IL_OP_SIN and IL_OP_COS since SC will remove them. Remove f16 tests from ocltst NativeFuncs tests since f16 support has been removed from AMDIL path. Affected files ... ... //depot/stg/opencl/drivers/opencl/compiler/llvm32/lib/Target/AMDIL/AMDILEnumeratedTypes.td#2 edit ... //depot/stg/opencl/drivers/opencl/compiler/llvm32/lib/Target/AMDIL/AMDILInstructions.td#2 edit ... //depot/stg/opencl/drivers/opencl/compiler/llvm32/lib/Target/AMDIL/AMDILIntrinsics.td#2 edit ... //depot/stg/opencl/drivers/opencl/tests/ocltst/module/compiler/NativeFuncs/native_funcs_macro.h#63 edit
35 строки
929 B
C++
35 строки
929 B
C++
//
|
|
// Copyright (c) 2010 Advanced Micro Devices, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef VERSIONS_HPP_
|
|
#define VERSIONS_HPP_
|
|
|
|
#include "utils/macros.hpp"
|
|
|
|
#ifndef AMD_PLATFORM_NAME
|
|
# define AMD_PLATFORM_NAME "AMD Accelerated Parallel Processing"
|
|
#endif // AMD_PLATFORM_NAME
|
|
|
|
#ifndef AMD_PLATFORM_BUILD_NUMBER
|
|
# define AMD_PLATFORM_BUILD_NUMBER 1849
|
|
#endif // AMD_PLATFORM_BUILD_NUMBER
|
|
|
|
#ifndef AMD_PLATFORM_REVISION_NUMBER
|
|
# define AMD_PLATFORM_REVISION_NUMBER 0
|
|
#endif // AMD_PLATFORM_REVISION_NUMBER
|
|
|
|
#ifndef AMD_PLATFORM_RELEASE_INFO
|
|
# define AMD_PLATFORM_RELEASE_INFO
|
|
#endif // AMD_PLATFORM_RELEASE_INFO
|
|
|
|
#define AMD_BUILD_STRING XSTR(AMD_PLATFORM_BUILD_NUMBER) \
|
|
"." XSTR(AMD_PLATFORM_REVISION_NUMBER)
|
|
|
|
#ifndef AMD_PLATFORM_INFO
|
|
# define AMD_PLATFORM_INFO "AMD-APP" AMD_PLATFORM_RELEASE_INFO \
|
|
DEBUG_ONLY("." IF(IS_OPTIMIZED,"opt","dbg")) " (" AMD_BUILD_STRING ")"
|
|
#endif // ATI_PLATFORM_INFO
|
|
|
|
#endif // VERSIONS_HPP_
|