Displaying 4 results from an estimated 4 matches for "my_kernel".
Did you mean:
__kernel
2013 Jul 11
3
Syslinux-6.02-pre2 - booting 32-bit kernels from efi64
On Wed, 10 Jul, at 03:44:57PM, Andreas Heinlein wrote:
> Am 08.07.2013 18:32, schrieb Matt Fleming:
> >I just released 6.02-pre2 which includes support for booting 32-bit
> >kernels from efi64. I know a number of people wanted this feature, so
> >hopefully it will be tested in various environments.
> >
> >One thing to note is that it is not possible to boot a
2016 Mar 09
2
RFC: Proposing an LLVM subproject for parallelism runtime and support libraries
...g code
snippet:
.. code-block:: c++
se::Stream stream(executor);
se::Timer timer(executor);
stream.InitWithTimer(&timer)
.ThenStartTimer(&timer)
.ThenLaunch(se::ThreadDim(dim_block_x, dim_block_y),
se::BlockDim(dim_grid_x, dim_grid_y),
my_kernel,
arg0, arg1, arg2)
.ThenStopTimer(&timer)
.BlockHostUntilDone();
The name of the kernel being launched in the snippet above is `my_kernel`
and the arguments being passed to the kernel are `arg0`, `arg1`, and
`arg2`. Kernels with any number of arguments of any type...
2016 Mar 09
2
RFC: Proposing an LLVM subproject for parallelism runtime and support libraries
...t;
> se::Stream stream(executor);
> se::Timer timer(executor);
> stream.InitWithTimer(&timer)
> .ThenStartTimer(&timer)
> .ThenLaunch(se::ThreadDim(dim_block_x, dim_block_y),
> se::BlockDim(dim_grid_x, dim_grid_y),
> my_kernel,
> arg0, arg1, arg2)
> .ThenStopTimer(&timer)
> .BlockHostUntilDone();
>
> The name of the kernel being launched in the snippet above is `my_kernel`
> and the arguments being passed to the kernel are `arg0`, `arg1`, and
> `arg2`. Kernels with a...
2016 Mar 10
2
RFC: Proposing an LLVM subproject for parallelism runtime and support libraries
...eam(executor);
>> se::Timer timer(executor);
>> stream.InitWithTimer(&timer)
>> .ThenStartTimer(&timer)
>> .ThenLaunch(se::ThreadDim(dim_block_x, dim_block_y),
>> se::BlockDim(dim_grid_x, dim_grid_y),
>> my_kernel,
>> arg0, arg1, arg2)
>> .ThenStopTimer(&timer)
>> .BlockHostUntilDone();
>>
>> The name of the kernel being launched in the snippet above is `my_kernel`
>> and the arguments being passed to the kernel are `arg0`, `arg1`, and
>...