Commit Graph

1193 Commits

Author SHA1 Message Date
foreman efa52f77ef P4 to Git Change 1264269 by smekhano@stas-nova-hsa on 2016/05/02 16:32:25
SWDEV-77584 - HSA HLC: refactoring of min/max processing and folding

	1. Fixed correctness bug: if a source contains code like (x > y) ? x : y, HLC was folding
	this and similar patterns to min and max instructions. The problem is with NaN handling.
	Such a pattern may return NaN if one of two arguments is a NaN. All our instructions return
	a number in this case, except for gcn instruction returning a qNaN if input is sNaN.
	For a qNaN a number is retuned in any way. Therefor such folding is only correct if NaN handling
	is disabled. Patterns are predicated to work with -cl-finite-math-only or -cl-fast-relaxed-math
	which includes the former option.

	NB: Performance regressions are expected in programs which do not use either of these options.

	2. Compiler lib did hot handle -cl-finite-math-only. Also added handling of -cl-no-signed-zeros,
	even though it does not affect code generation because there is no llvm counterpart for it.

	3. Patterns for NaN agnostic comparison codes are added. We are getting these in case if finite
	only math is requested.

	4. Removed patterns for __hsail_min_f* and __hsail_max_f*. Instead these intrinsics are lowered
	to fminnum and fmaxnum llvm operations with the same semantics. This allows to decrease the number
	of patterns and simplify handling.

	5. For f32 we were only producing gcn versions min and max with source patterns if gcn is enabled.
	Added similar lowering to standard min/max HSAIL operations if gcn is disabled.

	6. Added lowering of fmaxnum/fminnum to more efficient gcn operations if gcn is enabled.
	Neither OpenCL nor LLVM IR semantics are violated by this.

	7. Moved GCN media intrinsics definitions into the GCN directory.

	8. Added folding of gcn f32 instructions min(max), min(min), max(max) into corresponding gcn
	instructions med3, min3 and max3. This should have been helpful for color clamping.
	Performance testing showed these are slow, however. T-Rex test from compubench has slowed down
	by 50 times for no obvious reason. Therefor folding is disabled by default. The option -enable-gcn-mm3
	is added to enable the folding for testing purposes.

	Testing: smoke, precheckin, luxmark, compubench, BasemarkCL,
	conformance: commonfns, bruteforce -w, relationals, select
	Reviewed by Brian Sumner

Affected files ...

... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/common/codegen.cpp#68 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/common/opt_level.cpp#29 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/utils/options.cpp#35 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/GCN/HSAILArithmetic.td#3 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/GCN/HSAILFusion.td#3 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/GCN/HSAILIntrinsics.td#4 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/HSAILArithmetic.td#45 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/HSAILFusion.td#28 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/HSAILISelDAGToDAG.cpp#68 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/HSAILISelLowering.cpp#113 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/HSAILInstrInfo.td#21 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/lib/Target/HSAIL/HSAILIntrinsics.td#70 edit
... //depot/stg/opencl/drivers/opencl/tests/hsa/src/llc/opt/minmax/minmaxf3pat.cl#1 add
... //depot/stg/opencl/drivers/opencl/tests/hsa/tlst/llc_opt.tlst#93 edit
2016-05-02 16:43:00 -04:00
foreman 89f38b0f7e P4 to Git Change 1263609 by emankov@em-hsa-amd on 2016/04/29 10:45:48
SWDEV-79309 - Back out changelist 1252154 due to AMDIL regression SWDEV-93034

Affected files ...

... //depot/stg/opencl/drivers/opencl/compiler/legacy-lib/include/v0_8/aclStructs.h#7 edit
... //depot/stg/opencl/drivers/opencl/compiler/legacy-lib/include/v0_8/aclTypes.h#4 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/api/v0_8/acl.cpp#42 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/common/v0_8/if_acl.cpp#93 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/gpu/hsail_be.cpp#67 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/include/v0_8/aclStructs.h#24 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/include/v0_8/aclTypes.h#9 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/utils/v0_8/libUtils.cpp#16 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/utils/v0_8/libUtils.h#25 edit
... //depot/stg/opencl/drivers/opencl/tests/ocltst/module/complib/CLAssumptionCheck.cpp#50 edit
2016-04-29 11:00:59 -04:00
foreman c12399b2e6 P4 to Git Change 1263462 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/29 03:00:13
SWDEV-2 - Change OpenCL version number from 2108 to 2109.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1855 edit
2016-04-29 03:08:39 -04:00
foreman 23266526c9 P4 to Git Change 1262904 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/28 03:00:11
SWDEV-2 - Change OpenCL version number from 2107 to 2108.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1854 edit
2016-04-28 03:10:29 -04:00
foreman 889bcdcf8a P4 to Git Change 1262241 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/27 03:00:15
SWDEV-2 - Change OpenCL version number from 2106 to 2107.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1853 edit
2016-04-27 03:15:35 -04:00
foreman 829e3d0f6e P4 to Git Change 1261745 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/26 03:00:14
SWDEV-2 - Change OpenCL version number from 2105 to 2106.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1852 edit
2016-04-26 03:23:48 -04:00
foreman 62a98d8da8 P4 to Git Change 1261645 by smekhano@stas-nova-hsa on 2016/04/25 18:33:13
SWDEV-92625 - x86 RT: fix division by zero in cpumapping::HCtoDCmap
	In many cases default alignment passed as 0. At the same time minimal possible alignment is 1,
	while cpumappings uses this value as a divisor. Set it to max(passed alignment, 1).

	Testing: smoke, precheckin, conformance really quick on cpu
	Reviewed by German Andreev

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/cpu/cpumapping.cpp#5 edit
2016-04-25 18:43:12 -04:00
foreman c484ae9061 P4 to Git Change 1261640 by gandryey@gera-w8 on 2016/04/25 18:21:12
SWDEV-90482 - [Afterswitch] Interop from OpenGL to OpenCL is broken in one driver and crashes in another
	- Make sure SRD resource is reported to OS if program contains static samplers

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpukernel.cpp#314 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuprogram.hpp#67 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.cpp#4 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.hpp#4 edit
2016-04-25 18:36:37 -04:00
foreman 9775dd2ba0 P4 to Git Change 1261389 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/25 03:00:10
SWDEV-2 - Change OpenCL version number from 2104 to 2105.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1851 edit
2016-04-25 03:08:28 -04:00
foreman ee51c7b281 P4 to Git Change 1261314 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/24 03:00:10
SWDEV-2 - Change OpenCL version number from 2103 to 2104.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1850 edit
2016-04-24 03:12:29 -04:00
foreman 40e4f4f88c P4 to Git Change 1261291 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/23 03:00:11
SWDEV-2 - Change OpenCL version number from 2102 to 2103.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1849 edit
2016-04-23 03:17:16 -04:00
foreman 2b622feb2c P4 to Git Change 1260865 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/22 03:00:17
SWDEV-2 - Change OpenCL version number from 2101 to 2102.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1848 edit
2016-04-22 03:14:53 -04:00
foreman 52e7e4888d P4 to Git Change 1260385 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/21 03:00:11
SWDEV-2 - Change OpenCL version number from 2100 to 2101.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1847 edit
2016-04-21 03:06:56 -04:00
foreman 655ced5272 P4 to Git Change 1259968 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/20 03:00:14
SWDEV-2 - Change OpenCL version number from 2099 to 2100.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1846 edit
2016-04-20 03:10:39 -04:00
foreman 45ec615e49 P4 to Git Change 1259658 by bsumner@bsumner-lin-opencl on 2016/04/19 13:49:51
SWDEV-92314 - add means for library to query for GFX8+ chip

Affected files ...

... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/common/compiler_stage.hpp#13 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/common/linker.cpp#141 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/linker/include/AMDResolveLinker.h#2 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/linker/lib/AMDResolveLinker.cpp#2 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/linker/tools/opencl-link/opencl-link.cpp#4 edit
... //depot/stg/opencl/drivers/opencl/compiler/llvm/include/llvm/AMDLLVMContextHook.h#30 edit
2016-04-19 13:57:39 -04:00
foreman 3d98c5af33 P4 to Git Change 1259389 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/19 03:00:11
SWDEV-2 - Change OpenCL version number from 2098 to 2099.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1845 edit
2016-04-19 03:09:26 -04:00
foreman 5a16db75f5 P4 to Git Change 1258907 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/18 03:00:24
SWDEV-2 - Change OpenCL version number from 2097 to 2098.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1844 edit
2016-04-18 03:12:59 -04:00
foreman cd1c5dc06e P4 to Git Change 1258822 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/17 03:00:13
SWDEV-2 - Change OpenCL version number from 2096 to 2097.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1843 edit
2016-04-17 03:10:07 -04:00
foreman ab6f8803b0 P4 to Git Change 1258794 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/16 03:00:10
SWDEV-2 - Change OpenCL version number from 2095 to 2096.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1842 edit
2016-04-16 03:12:02 -04:00
foreman 6569fba06d P4 to Git Change 1258779 by gandryey@gera-ocl on 2016/04/15 19:16:15
SWDEV-92245 - [CQE OCL][QR][G] Multiple 32/64 bit Bolt sample crashes on all CPUs. FaultyCL#1257532
	- Bolt calls map/unmap with the same region twice. Add a counter for the same region to track that case

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/device.cpp#195 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/device.hpp#272 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuvirtual.cpp#401 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#6 edit
2016-04-15 19:22:30 -04:00
foreman 9b99d758cd P4 to Git Change 1258631 by gandryey@gera-w8 on 2016/04/15 15:02:11
SWDEV-86035 - Add PAL backend to OpenCL
	- Switch #pragma once

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palappprofile.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palbinary.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palblit.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palconstbuf.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palcounters.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldebugger.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldebugmanager.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldefs.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevice.hpp#4 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.cpp#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.hpp#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palmemory.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprintf.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.hpp#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palresource.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsched.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palthreadtrace.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paltimestamp.hpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.hpp#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palwavelimiter.hpp#2 edit
2016-04-15 15:48:36 -04:00
foreman be9ae70459 P4 to Git Change 1258321 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/15 03:00:47
SWDEV-2 - Change OpenCL version number from 2094 to 2095.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1841 edit
2016-04-15 03:11:58 -04:00
foreman 511fd5a36a P4 to Git Change 1258240 by gandryey@gera-ocl on 2016/04/14 19:21:55
SWDEV-79445 - OCL generic changes and code clean-up
	- Fix TC failures. Clean unmap info after runtime gets the mip

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuvirtual.cpp#400 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#5 edit
2016-04-14 19:33:16 -04:00
foreman 650384ad2c P4 to Git Change 1257871 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/14 03:00:37
SWDEV-2 - Change OpenCL version number from 2093 to 2094.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1840 edit
2016-04-14 03:09:54 -04:00
foreman b0631f7ab9 P4 to Git Change 1257532 by gandryey@gera-ocl on 2016/04/13 13:18:22
SWDEV-92049 - Forum [2712399]: clEnqueueMapBuffer in parallel
	- Handle multiple unmapInfo structures of multiple simultaneous maps of the same buffer
	- The change didn't affect images path, since it requires extra handling

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_memobj.cpp#79 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_svm.cpp#16 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/device.cpp#194 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/device.hpp#271 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpumemory.cpp#126 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuvirtual.cpp#399 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsamemory.cpp#25 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsamemory.hpp#10 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsavirtual.cpp#64 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palmemory.cpp#2 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#4 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/command.hpp#82 edit
2016-04-13 13:27:37 -04:00
foreman 91e212bebe P4 to Git Change 1257342 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/13 03:00:12
SWDEV-2 - Change OpenCL version number from 2092 to 2093.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1839 edit
2016-04-13 03:07:14 -04:00
foreman 5ef411d5dd P4 to Git Change 1257129 by weizhang@weizhang-lnx-opencl on 2016/04/12 15:33:15
SWDEV-78299 - Re-submit CL#1236441.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.cpp#545 edit
2016-04-12 15:46:44 -04:00
foreman 30e866a93e P4 to Git Change 1256816 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/12 03:00:10
SWDEV-2 - Change OpenCL version number from 2091 to 2092.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1838 edit
2016-04-12 03:11:45 -04:00
foreman 06de25ef81 P4 to Git Change 1256676 by gandryey@gera-w8 on 2016/04/11 17:55:39
SWDEV-86035 - Add PAL backend to OpenCL
	- Increment PAL interface version

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/Makefile#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palresource.cpp#2 edit
2016-04-11 18:23:12 -04:00
foreman 71309c0ae5 P4 to Git Change 1256294 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/11 03:00:11
SWDEV-2 - Change OpenCL version number from 2090 to 2091.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1837 edit
2016-04-11 03:09:28 -04:00
foreman ce61cd2fd0 P4 to Git Change 1256209 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/10 03:00:11
SWDEV-2 - Change OpenCL version number from 2089 to 2090.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1836 edit
2016-04-10 03:14:21 -04:00
foreman b01b0d8fda P4 to Git Change 1256170 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/09 03:00:11
SWDEV-2 - Change OpenCL version number from 2088 to 2089.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1835 edit
2016-04-09 03:13:25 -04:00
foreman 4f81a5ef7d P4 to Git Change 1256021 by cpaquot@hog-ocl on 2016/04/08 15:41:06
SWDEV-90482 - [Afterswitch] Interop from OpenGL to OpenCL is broken in one driver and crashes in another
	Fixed the crash by restoring the order where we bind the external device.

	ReviewBoardURL = http://ocltc.amd.com/reviews/r/10195/diff/

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.cpp#544 edit
2016-04-08 15:51:49 -04:00
foreman 2d644faecc P4 to Git Change 1255746 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/08 03:00:09
SWDEV-2 - Change OpenCL version number from 2087 to 2088.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1834 edit
2016-04-08 03:07:40 -04:00
foreman 48315e6615 P4 to Git Change 1255270 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/07 03:00:14
SWDEV-2 - Change OpenCL version number from 2086 to 2087.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1833 edit
2016-04-07 03:10:51 -04:00
foreman cad5ba5387 P4 to Git Change 1255001 by xcui@merged_opencl_jxcwin on 2016/04/06 12:00:30
SWDEV-90677 - disable SVM 32 bit support for VI+ asic for windows, due to the KMD feature limitation.
	code review:
	http://ocltc.amd.com/reviews/r/10153/
	precheckin:
	http://ocltc.amd.com:8111/viewModification.html?modId=69277&personal=true&buildTypeId=&tab=vcsModificationBuilds&show_all_builds=true

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpusettings.cpp#344 edit
2016-04-06 12:34:13 -04:00
foreman b09074dda2 P4 to Git Change 1254818 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/06 03:00:13
SWDEV-2 - Change OpenCL version number from 2085 to 2086.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1832 edit
2016-04-06 03:06:52 -04:00
foreman 589a800fae P4 to Git Change 1254404 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/05 03:00:10
SWDEV-2 - Change OpenCL version number from 2084 to 2085.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1831 edit
2016-04-05 14:51:19 -04:00
foreman 8756fa14cb P4 to Git Change 1254144 by gandryey@gera-rcf-lnx on 2016/04/04 11:14:17
SWDEV-79445 - OCL generic changes and code clean-up
	- Move prepinned logic to the abstraciton layer

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/device.cpp#193 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/device.hpp#270 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.cpp#543 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpudevice.hpp#158 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuvirtual.cpp#398 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsadevice.cpp#61 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsadevice.hpp#29 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsamemory.cpp#23 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/hsa_foundation/hsavirtual.cpp#62 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevice.cpp#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/paldevice.hpp#3 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#3 edit
2016-04-04 11:25:36 -04:00
foreman 844c44128e P4 to Git Change 1254081 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/04 03:00:10
SWDEV-2 - Change OpenCL version number from 2083 to 2084.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1830 edit
2016-04-04 03:13:13 -04:00
foreman 58676824f8 P4 to Git Change 1254065 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/03 03:00:10
SWDEV-2 - Change OpenCL version number from 2082 to 2083.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1829 edit
2016-04-03 03:12:38 -04:00
foreman 6400572fd8 P4 to Git Change 1254050 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/02 03:00:15
SWDEV-2 - Change OpenCL version number from 2081 to 2082.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1828 edit
2016-04-02 03:14:27 -04:00
foreman c2a93ebd3a P4 to Git Change 1253623 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/04/01 03:00:12
SWDEV-2 - Change OpenCL version number from 2080 to 2081.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1827 edit
2016-04-01 03:09:21 -04:00
foreman 93730fbae0 P4 to Git Change 1253157 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/03/31 03:00:10
SWDEV-2 - Change OpenCL version number from 2079 to 2080.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1826 edit
2016-03-31 03:07:46 -04:00
foreman 4b7a3bd5b4 P4 to Git Change 1252764 by jatang@jatang-opencl-hsa-stg1 on 2016/03/30 10:16:09
SWDEV-86378 -  Apply the sDMA L2T work-around to T2L as well.

	HW confirms T2L also has issues.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gslbe/src/rt/GSLDevice.cpp#164 edit
2016-03-30 10:21:54 -04:00
foreman f9492c32c8 P4 to Git Change 1252646 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/03/30 03:00:11
SWDEV-2 - Change OpenCL version number from 2078 to 2079.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1825 edit
2016-03-30 03:11:23 -04:00
foreman 511c6a5de8 P4 to Git Change 1252154 by emankov@em-hsa-amd on 2016/03/29 07:23:56
SWDEV-79309 - Compiler Lib memory consumption decreasing by aclQueryInfo refactoring.

	[Problem] Memcpy on every aclQueryInfo for metadata. As a result an unreasonable memory consumption on every compiled binary (on Runtime).

	[Solution] Once extracted kernel Metadata is cached, secondary extraction doesn't happen. Blits are also affected.

	[Testing] precheckin
	http://ocltc.amd.com:8111/viewModification.html?modId=69016&personal=true&buildTypeId=&tab=vcsModificationBuilds&show_all_builds=true

	[Reviewers] Stanislav Mekhanoshin, Nikolay Haustov

Affected files ...

... //depot/stg/opencl/drivers/opencl/compiler/legacy-lib/include/v0_8/aclStructs.h#6 edit
... //depot/stg/opencl/drivers/opencl/compiler/legacy-lib/include/v0_8/aclTypes.h#3 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/api/v0_8/acl.cpp#41 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/common/v0_8/if_acl.cpp#92 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/backends/gpu/hsail_be.cpp#66 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/include/v0_8/aclStructs.h#23 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/include/v0_8/aclTypes.h#8 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/utils/v0_8/libUtils.cpp#15 edit
... //depot/stg/opencl/drivers/opencl/compiler/lib/utils/v0_8/libUtils.h#24 edit
... //depot/stg/opencl/drivers/opencl/tests/ocltst/module/complib/CLAssumptionCheck.cpp#49 edit
2016-03-29 07:35:41 -04:00
foreman 31bc8d0dbe P4 to Git Change 1252028 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/03/29 03:00:11
SWDEV-2 - Change OpenCL version number from 2077 to 2078.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1824 edit
2016-03-29 03:11:36 -04:00
foreman 45f9afde22 P4 to Git Change 1251574 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/03/28 03:00:10
SWDEV-2 - Change OpenCL version number from 2076 to 2077.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1823 edit
2016-03-28 03:12:29 -04:00
foreman 92fb88b700 P4 to Git Change 1251523 by johtaylo@johtaylo-JTBUILDER03-increment on 2016/03/27 03:00:11
SWDEV-2 - Change OpenCL version number from 2075 to 2076.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#1822 edit
2016-03-27 03:06:16 -04:00