Re: [Mesa-dev] [PATCH 0/2] clover: add clCompileProgram

2014-08-05 Thread Francisco Jerez
EdB edb+m...@sigluy.net writes: Hello I'm done with the clCompile part of OpenCL 1.2. As you can see I use char* data to transfert data from core to llvm. At first I was thinking of using std class but we need to be binary safe when data are transfert beetween c++98/c++11 compiled code.

Re: [Mesa-dev] [PATCH 0/2] clover: add clCompileProgram

2014-08-05 Thread EdB
On Tuesday, August 05, 2014 03:38:48 PM Francisco Jerez wrote: EdB edb+m...@sigluy.net writes: Hello I'm done with the clCompile part of OpenCL 1.2. As you can see I use char* data to transfert data from core to llvm. At first I was thinking of using std class but we need to be

[Mesa-dev] [PATCH 0/2] clover: add clCompileProgram

2014-08-04 Thread EdB
Hello I'm done with the clCompile part of OpenCL 1.2. As you can see I use char* data to transfert data from core to llvm. At first I was thinking of using std class but we need to be binary safe when data are transfert beetween c++98/c++11 compiled code. Then I try to use compat class, but it

Re: [Mesa-dev] [PATCH 0/2] clover: add clCompileProgram

2014-08-04 Thread Matt Arsenault
On Aug 4, 2014, at 8:03 AM, EdB edb+m...@sigluy.net wrote: Hello I'm done with the clCompile part of OpenCL 1.2. As you can see I use char* data to transfert data from core to llvm. At first I was thinking of using std class but we need to be binary safe when data are transfert