On 11/16/2015 11:47 AM, Emil Velikov wrote:
On 16 November 2015 at 10:39, Emil Velikov wrote:
Hi Samuel,
On 13 November 2015 at 00:04, Samuel Pitoiset wrote:
This adds the ability to launch simple compute kernels like the one I
will use to read out MP performance counters in the upcoming p
On 16 November 2015 at 10:39, Emil Velikov wrote:
> Hi Samuel,
>
> On 13 November 2015 at 00:04, Samuel Pitoiset
> wrote:
>> This adds the ability to launch simple compute kernels like the one I
>> will use to read out MP performance counters in the upcoming patch.
>>
>> This compute support is
Hi Samuel,
On 13 November 2015 at 00:04, Samuel Pitoiset wrote:
> This adds the ability to launch simple compute kernels like the one I
> will use to read out MP performance counters in the upcoming patch.
>
> This compute support is based on the work of Francisco Jerez (aka curro)
> that he did
On 11/13/2015 01:15 AM, Ilia Mirkin wrote:
On Thu, Nov 12, 2015 at 7:04 PM, Samuel Pitoiset
wrote:
+static bool
+nv50_compute_validate_program(struct nv50_context *nv50)
+{
+ struct nv50_program *prog = nv50->compprog;
+
+ if (prog->mem)
+ return true;
+
+ if (!prog->translated) {
On Thu, Nov 12, 2015 at 7:04 PM, Samuel Pitoiset
wrote:
> +static bool
> +nv50_compute_validate_program(struct nv50_context *nv50)
> +{
> + struct nv50_program *prog = nv50->compprog;
> +
> + if (prog->mem)
> + return true;
> +
> + if (!prog->translated) {
> + prog->translated = nv
This adds the ability to launch simple compute kernels like the one I
will use to read out MP performance counters in the upcoming patch.
This compute support is based on the work of Francisco Jerez (aka curro)
that he did as part of his EVoC project in 2011/2012 to get OpenCL
working on Tesla. Hi