summaryrefslogtreecommitdiffstats
path: root/all_pairs/source/audiobeam/changeLog.txt
diff options
context:
space:
mode:
Diffstat (limited to 'all_pairs/source/audiobeam/changeLog.txt')
-rw-r--r--all_pairs/source/audiobeam/changeLog.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/all_pairs/source/audiobeam/changeLog.txt b/all_pairs/source/audiobeam/changeLog.txt
new file mode 100644
index 0000000..b9b8933
--- /dev/null
+++ b/all_pairs/source/audiobeam/changeLog.txt
@@ -0,0 +1,36 @@
1File: audiobeam.c
2Original provenience: StreamIt
3 http://groups.csail.mit.edu/cag/streamit/
4
52015-12-29:
6- Removed original header comment, replaced by TACLeBench header.
7- Renamed libraryfiles according to TACLeBench naming scheme.
8- Removed all preprocessor macros, integrated them directly in the source code.
9- Added prefix "audiobeam_" to all global symbols.
10- Added explicit forward declarations of functions.
11- Added an empty init function
12- Added preprocessor command to determine if 32 or 64 bit in audiobeamlibmalloc.h
13- Added new function audiobeam_return producing a checksum as return value.
14- Added new function audiobeam_main according to TACLeBench guidelines.
15 audiobeam_main is annotated as entry-point for timing analysis.
16- Applied code formatting according to the following rules
17 - Lines shall not be wider than 80 characters; whenever possible, appropriate
18 line breaks shall be inserted to keep lines below 80 characters
19 - Indentation is done using whitespaces only, no tabs. Code is indented by
20 two whitespaces
21 - Two empty lines are put between any two functions
22 - In non-empty lists or index expressions, opening '(' and '[' are followed by
23 one whitespace, closing ')' and ']' are preceded by one whitespace
24 - In comma- or colon-separated argument lists, one whitespace is put after
25 each comma/colon
26 - Names of functions and global variables all start with a benchmark-specific
27 prefix (here: bs_) followed by lowercase letter (e.g., bs_square)
28 - For pointer types, one whitespace is put before the '*'
29 - Operators within expressions shall be preceded and followed by one
30 whitespace
31 - Code of then- and else-parts of if-then-else statements shall be put in
32 separate lines, not in the same lines as the if-condition or the keyword
33 "else"
34 - Opening braces '{' denoting the beginning of code for some if-else or loop
35 body shall be put at the end of the same line where the keywords "if",
36 "else", "for", "while" etc. occur \ No newline at end of file