aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md
blob: 4bf05d5cb2f00f0a172ee953cd48c4349cb93e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
About
=====

Application to perform memory benchmark.

Dependencies
============

Application is written in ANSI C and that is all you need to compile and run
this application. Just note, that you will be stuck only with *clock\_t* timer,
which may have reduced resolution. If automake detects *clock\_gettime*
function, additional clock *CLOCK\_REALTIME* will be available which has at
last as good resolution as *clock\_t*

Compiling and Installing
========================

memperf uses automake, so compilation is pretty standard

autoreconf -i
./configure
make
make install

tests can be run with

make check

License
=======

Library is licensed under BSD 2-clause license. See LICENSE file for details.

Contact
=======

Michał Łyszczek <michal.lyszczek@bofc.pl>

Thanks to
=========

Myself, for creating mtest (https://github.com/mlyszczek/mtest) - a small and
nice framework for unit testing in C.