aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/mm
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2015-01-09 17:57:12 -0800
committerAndrew Waterman <waterman@cs.berkeley.edu>2015-01-09 17:57:12 -0800
commit160bdaa323bc8f8e651f9f546822336cf17d92f5 (patch)
tree25de76bbc455f970f57f135f2de4e0cc3865ca9b /benchmarks/mm
parent350b03e6dd18616146cf43b9d5daa98db059822b (diff)
downloadriscv-tests-160bdaa323bc8f8e651f9f546822336cf17d92f5.zip
riscv-tests-160bdaa323bc8f8e651f9f546822336cf17d92f5.tar.gz
riscv-tests-160bdaa323bc8f8e651f9f546822336cf17d92f5.tar.bz2
Add LICENSE
Diffstat (limited to 'benchmarks/mm')
-rw-r--r--benchmarks/mm/common.h2
-rw-r--r--benchmarks/mm/hwacha.S2
-rw-r--r--benchmarks/mm/hwacha.h2
-rw-r--r--benchmarks/mm/mm.c2
-rw-r--r--benchmarks/mm/mm_main.c2
-rw-r--r--benchmarks/mm/rb.h2
6 files changed, 12 insertions, 0 deletions
diff --git a/benchmarks/mm/common.h b/benchmarks/mm/common.h
index f0e6709..c48cc57 100644
--- a/benchmarks/mm/common.h
+++ b/benchmarks/mm/common.h
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#ifndef _MM_H
#define _MM_H
diff --git a/benchmarks/mm/hwacha.S b/benchmarks/mm/hwacha.S
index 2a07f63..e5a67b4 100644
--- a/benchmarks/mm/hwacha.S
+++ b/benchmarks/mm/hwacha.S
@@ -1,3 +1,5 @@
+# See LICENSE for license details.
+
.text
.align 2
diff --git a/benchmarks/mm/hwacha.h b/benchmarks/mm/hwacha.h
index c12d854..42abc87 100644
--- a/benchmarks/mm/hwacha.h
+++ b/benchmarks/mm/hwacha.h
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
static const int HCBM = 18;
static const int HCBN = 80;
static const int HCBK = 16;
diff --git a/benchmarks/mm/mm.c b/benchmarks/mm/mm.c
index 8abe8e6..e5edd8a 100644
--- a/benchmarks/mm/mm.c
+++ b/benchmarks/mm/mm.c
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "common.h"
#include <assert.h>
#include <math.h>
diff --git a/benchmarks/mm/mm_main.c b/benchmarks/mm/mm_main.c
index e119235..4fb1b1b 100644
--- a/benchmarks/mm/mm_main.c
+++ b/benchmarks/mm/mm_main.c
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "common.h"
#include <assert.h>
#include <stdlib.h>
diff --git a/benchmarks/mm/rb.h b/benchmarks/mm/rb.h
index c5d5890..fb08386 100644
--- a/benchmarks/mm/rb.h
+++ b/benchmarks/mm/rb.h
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
static const int RBM = 4, RBN = 5, RBK = 6;
static const int CBM = 36, CBN = 35, CBK = 36;
static inline void kloop(size_t p, t* a0, size_t lda, t* b0, size_t ldb, t* c, size_t ldc)