diff options
| author | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
|---|---|---|
| committer | Joshua Bakita <bakitajoshua@gmail.com> | 2019-10-07 19:13:39 -0400 |
| commit | 386b7d3366f1359a265da207a9cafa3edf553b64 (patch) | |
| tree | c76120c2c138faed822e4ae386be6ef22a738a78 /baseline/source/audiobeam/changeLog.txt | |
| parent | 54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff) | |
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'baseline/source/audiobeam/changeLog.txt')
| -rw-r--r-- | baseline/source/audiobeam/changeLog.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/baseline/source/audiobeam/changeLog.txt b/baseline/source/audiobeam/changeLog.txt new file mode 100644 index 0000000..b9b8933 --- /dev/null +++ b/baseline/source/audiobeam/changeLog.txt | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | File: audiobeam.c | ||
| 2 | Original provenience: StreamIt | ||
| 3 | http://groups.csail.mit.edu/cag/streamit/ | ||
| 4 | |||
| 5 | 2015-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 | ||
