You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Make sure you have the `CUDA Toolkit <https://developer.nvidia.com/cuda-toolkit>`_ installed
67
-
- You can install PyCuda using ``pip install pycuda``
57
+
- First, make sure you have the `CUDA Toolkit <https://developer.nvidia.com/cuda-toolkit>`_ installed
58
+
- You can install PyCuda using ``pip install pycuda``
68
59
69
-
- To tune OpenCL kernels
60
+
To tune OpenCL kernels:
70
61
71
-
- Make sure you have an OpenCL compiler for your intended OpenCL platform
62
+
- First, make sure you have an OpenCL compiler for your intended OpenCL platform
72
63
- You can install PyOpenCL using ``pip install pyopencl``
73
64
65
+
If you need more information about how to install the Kernel Tuner and all dependencies see the `installation guide <http://benvanwerkhoven.github.io/kernel_tuner/install.html>`__
66
+
74
67
Example usage
75
68
-------------
76
69
@@ -96,7 +89,7 @@ The following shows a simple example for tuning a CUDA kernel:
96
89
args = [c, a, b, n]
97
90
98
91
tune_params =dict()
99
-
tune_params["block_size_x"] = [128+64*i for i inrange(15)]
0 commit comments