-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
136 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
The following testbench binaries were created based on CHStone benchmark [1]. | ||
|
||
* adpcm | ||
* aes | ||
* bf (blowfish) | ||
* gsm | ||
* jpeg | ||
* mpeg2 | ||
* sha | ||
|
||
Some of source codes include their copyright notices as below: | ||
|
||
### aes | ||
``` | ||
Copyright (C) 2005 | ||
Akira Iwata & Masayuki Sato | ||
Akira Iwata Laboratory, | ||
Nagoya Institute of Technology in Japan. | ||
All rights reserved. | ||
This software is written by Masayuki Sato. | ||
And if you want to contact us, send an email to Kimitake Wakayama | ||
([email protected]) | ||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
1. Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
3. All advertising materials mentioning features or use of this software must | ||
display the following acknowledgment: | ||
"This product includes software developed by Akira Iwata Laboratory, | ||
Nagoya Institute of Technology in Japan (http://mars.elcom.nitech.ac.jp/)." | ||
4. Redistributions of any form whatsoever must retain the following | ||
acknowledgment: | ||
"This product includes software developed by Akira Iwata Laboratory, | ||
Nagoya Institute of Technology in Japan (http://mars.elcom.nitech.ac.jp/)." | ||
THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY. | ||
AKIRA IWATA LABORATORY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS | ||
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, | ||
IN NO EVENT SHALL AKIRA IWATA LABORATORY BE LIABLE FOR ANY SPECIAL, | ||
INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING | ||
FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, | ||
NEGLIGENCE OR OTHER TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION | ||
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
``` | ||
|
||
### bf (blowfish) | ||
``` | ||
Copyright (C) 1995-1997 Eric Young ([email protected]) | ||
All rights reserved. | ||
This package is an SSL implementation written | ||
by Eric Young ([email protected]). | ||
The implementation was written so as to conform with Netscapes SSL. | ||
This library is free for commercial and non-commercial use as long as | ||
the following conditions are aheared to. The following conditions | ||
apply to all code found in this distribution, be it the RC4, RSA, | ||
lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
included with this distribution is covered by the same copyright terms | ||
except that the holder is Tim Hudson ([email protected]). | ||
Copyright remains Eric Young's, and as such any Copyright notices in | ||
the code are not to be removed. | ||
If this package is used in a product, Eric Young should be given attribution | ||
as the author of the parts of the library used. | ||
This can be in the form of a textual message at program startup or | ||
in documentation (online or textual) provided with the package. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
1. Redistributions of source code must retain the copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
3. All advertising materials mentioning features or use of this software | ||
must display the following acknowledgement: | ||
"This product includes cryptographic software written by | ||
Eric Young ([email protected])" | ||
The word 'cryptographic' can be left out if the rouines from the library | ||
being used are not cryptographic related :-). | ||
``` | ||
|
||
### jpeg | ||
``` | ||
Copyright (C) 2008 | ||
Y. Hara, H. Tomiyama, S. Honda, H. Takada and K. Ishii | ||
Nagoya University, Japan | ||
All rights reserved. | ||
Disclaimer of Warranty | ||
These software programs are available to the user without any license fee or | ||
royalty on an "as is" basis. The authors disclaims any and all warranties, | ||
whether express, implied, or statuary, including any implied warranties or | ||
merchantability or of fitness for a particular purpose. In no event shall the | ||
copyright-holder be liable for any incidental, punitive, or consequential damages | ||
of any kind whatsoever arising from the use of these programs. This disclaimer | ||
of warranty extends to the user of these programs and user's customers, employees, | ||
agents, transferees, successors, and assigns. | ||
``` | ||
|
||
### mpeg2 | ||
``` | ||
Copyright (C) 2008 | ||
Y. Hara, H. Tomiyama, S. Honda, H. Takada and K. Ishii | ||
Nagoya University, Japan | ||
All rights reserved. | ||
Disclaimer of Warranty | ||
These software programs are available to the user without any license fee or | ||
royalty on an "as is" basis. The authors disclaims any and all warranties, | ||
whether express, implied, or statuary, including any implied warranties or | ||
merchantability or of fitness for a particular purpose. In no event shall the | ||
copyright-holder be liable for any incidental, punitive, or consequential damages | ||
of any kind whatsoever arising from the use of these programs. This disclaimer | ||
of warranty extends to the user of these programs and user's customers, employees, | ||
agents, transferees, successors, and assigns. | ||
``` | ||
|
||
## Reference | ||
1. Yuko Hara, Hiroyuki Tomiyama, Shinya Honda and Hiroaki Takada, | ||
"Proposal and Quantitative Analysis of the CHStone Benchmark Program Suite for Practical C-based High-level Synthesis", | ||
Journal of Information Processing, Vol. 17, pp.242-254, (2009). |