Mercurial > hg > Papers > 2014 > kkb-sigos
changeset 9:9bb5fca606b3 default tip
fix fontsize
author | Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 13 May 2014 16:52:03 +0900 |
parents | a5fc2e56aef7 |
children | |
files | presen/s6/index.html |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/presen/s6/index.html Tue May 13 15:45:05 2014 +0900 +++ b/presen/s6/index.html Tue May 13 16:52:03 2014 +0900 @@ -273,7 +273,7 @@ <p> 2つの input の積を取り、output に返す例題の kernel </p> - <pre style="font-size:70%"> + <pre style="font-size:90%"> // MultiCore CPU static int run(SchedTask *s) @@ -287,7 +287,7 @@ C[i]=A[i]*B[i]; return 0; }</pre> -<pre class="code" style="font-size:70%"> +<pre class="code" style="font-size:90%"> // OpenCL __kernel void multi(__global const long *params, __global const float* A, __global const float* B, __global float* C) @@ -295,7 +295,7 @@ long id = get_global_id(0); C[id]=A[id]*B[id]; }</pre> -<pre class="code" style="font-size:70%"> +<pre class="code" style="font-size:90%"> // CUDA extern "C" { __global__ void multi(long* params, float* A, float* B, float* C) {