Is this error 2xRX480 related?
#2
No, this is a known bug in AMD OpenCL runtime/compiler, which is part of the AMD driver. Somewhere between AMD driver version 15.12 and the current driver they made some change and this change was bad, so it's not directly related to the rx 480. The compiler no longer accepts:

Quote:-I "somepath"

... in clBuildProgram(). Now it needs to be:

Quote:-I somepath

otherwise it creates that "file not found" error...

The problem is, the new handling would fail if the user has a space in the path. 

Another problem is the handling of the encoding. For example if there's an "ä" in the path, but this error is not related to the quotes, it's another error with the encoding. 

Anyway we can't simply remove the quotes so that it works with newer drivers, because the root of the problem is the AMD driver. Other drivers as the Intel or the NVidia handle it fine, and the AMD driver 15.12 and before does, too.


Messages In This Thread
Is this error 2xRX480 related? - by info - 07-15-2016, 06:10 AM
RE: Is this error 2xRX480 related? - by atom - 07-15-2016, 10:11 AM
RE: Is this error 2xRX480 related? - by info - 07-15-2016, 02:11 PM
RE: Is this error 2xRX480 related? - by atom - 07-15-2016, 06:31 PM