We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b65cd commit 47021caCopy full SHA for 47021ca
README.md
@@ -1 +1,32 @@
1
-# LIKWID.jl
+LIKWID.jl
2
+=========
3
+*Like I Knew What I am Doing*
4
+
5
+LIKWID.jl is a Julia wrapper for [LIKWID](https://github.com/RRZE-HPC/likwid).
6
7
+Installation
8
+------------
9
10
+First install `likwid` following https://github.com/RRZE-HPC/likwid#download-build-and-install,
11
+and then use the Julia package manger to install `]add https://github.com/JuliaPerf/LIKWID.jl`.
12
13
+Example
14
+-------
15
16
+```julia
17
+using LIKWID
18
+using LinearAlgebra
19
20
+A = rand(128, 64)
21
+B = rand(64, 128)
22
+C = zeros(128, 128)
23
24
+LIKWID.Marker.startregion("matmul")
25
+mul!(C, A, B)
26
+LIKWID.Marker.stopregion("matmul")
27
+```
28
29
+License
30
31
32
+LIKWID.jl is licensed under the [MIT license](LICENSE).
0 commit comments