-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpublications.html
260 lines (260 loc) · 27.9 KB
/
publications.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="A Fast Forward Error Correction Toolbox (AFF3CT)">
<meta name="author" content="Adrien CASSAGNE">
<title>AFF3CT - A Fast Forward Error Correction Toolbox</title>
<link rel="stylesheet" href="./css/lib/bootstrap-4.1.1.min.css">
<link rel="stylesheet" href="./css/bootstrap_carousel.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<script src="./js/lib/jquery-3.3.1.min.js"></script>
<script src="./js/lib/popper-1.14.3.min.js"></script>
<script src="./js/lib/bootstrap-4.1.1.min.js"></script>
<script> /* Google Analytics */
if (window.location.host == "aff3ct.github.io") {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-78973823-1', 'auto');
ga('send', 'pageview');
}
</script>
<script>
/**
* Function that tracks a click on an outbound link in Analytics.
* This function takes a valid URL string as an argument, and uses that URL string
* as the event label. Setting the transport method to 'beacon' lets the hit be sent
* using 'navigator.sendBeacon' in browser that support it.
*/
var trackOutboundLink = function(url, isExternal = true) {
var params = {};
if (!isExternal) {
params.hitCallback = function () {
document.location = url;
}
}
if (window.location.host == "aff3ct.github.io")
ga('send', 'event', 'outbound', 'click', url, params);
return isExternal;
}
</script>
<style>
.excl { color:#EA5678; }
</style>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="index.html">AFF3CT</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbarCollapse" class="collapse navbar-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-link" href="index.html"><i class="fas fa-home" aria-hidden="true"> </i>Home</a></li>
<li class="nav-item active"><a class="nav-link" href="publications.html"><i class="fa fa-newspaper" aria-hidden="true"> </i>Publications</a></li>
<li class="nav-item"><a class="nav-link" href="contributors.html"><i class="fa fa-users" aria-hidden="true"> </i>Contributors</a></li>
<li class="nav-item"><a class="nav-link" href="download.html"><i class="fas fa-download" aria-hidden="true"> </i>Download</a></li>
<li class="nav-item"><a class="nav-link" href="https://aff3ct.readthedocs.io" target="_blank" onclick="return trackOutboundLink('https://aff3ct.readthedocs.io');"><i class="fas fa-book" aria-hidden="true"> </i>Documentation</a></li>
<li class="nav-item"><a class="nav-link" href="https://github.com/aff3ct/aff3ct" target="_blank" onclick="return trackOutboundLink('https://github.com/aff3ct/aff3ct');"><i class="fab fa-github" aria-hidden="true"> </i>GitHub Repository</a></li>
<!--
<li class="nav-item"><a class="nav-link" href="consortium.html"><i class="fas fa-hands-helping" aria-hidden="true"> </i>Consortium <span class="excl"><i class="fas fa-exclamation"></i></span></a></li>
-->
</ul>
<ul class="navbar-nav navbar-right">
<li class="nav-item"><a class="nav-link" href="comparator.html"><i class="fas fa-chart-bar" aria-hidden="true"> </i>BER/FER Comparator</a></li>
<li class="nav-item"><a class="nav-link" href="turbo_reader.html"><i class="fas fa-code-branch" aria-hidden="true"> </i>Turbo Code Reader</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown_hof" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-list" aria-hidden="true"> </i>Software Decoders Hall of Fame </a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdown_hof">
<h6 class="dropdown-header">Synoptic tables</h6>
<a class="dropdown-item" href="hof_turbo.html">Turbo Codes</a>
<a class="dropdown-item" href="hof_ldpc.html">LDPC Codes</a>
<a class="dropdown-item" href="hof_polar.html">Polar Codes</a>
</div>
</li>
</ul>
</div>
</nav>
<div class="container marketing">
<div class="mb-4"></div>
<h1 class="display-4">Related publications</h1>
<div class="alert alert-info" role="alert">
<strong><u>How to cite AFF3CT</u></strong><br/>
We recommend you to cite the <a href="https://www.journals.elsevier.com/softwarex" target="_blank" onclick="return trackOutboundLink('https://www.journals.elsevier.com/softwarex');">SoftwareX</a> journal article: <strong>A. Cassagne et al., “<a href="https://doi.org/10.1016/j.softx.2019.100345" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1016/j.softx.2019.100345');">AFF3CT: A Fast Forward Error Correction Toolbox!</a>,“ <i>SoftwareX</i>, 2019</strong>.<br/>
<a class="btn btn-primary" href="resources/bibtex/Cassagne2019a%20-%20AFF3CT:%20A%20Fast%20Forward%20Error%20Correction%20Toolbox.bib" role="button" style="margin-top:5px" target="_blank" onclick="return trackOutboundLink('resources/bibtex/Cassagne2019a%20-%20AFF3CT:%20A%20Fast%20Forward%20Error%20Correction%20Toolbox.bib');"><i class="fas fa-cloud-download-alt fa-lg" aria-hidden="true"> </i>Bibtex Entry</a>
</div>
<h2>Journal articles</h2>
<p>
<ol>
<li>
Adrien Cassagne, Romain Tajan, Olivier Aumage, Denis Barthou, Camille Leroux and Christophe Jégo<br />
<strong>StreamPU: A DSEL for High Throughput and Low Latency Software-Defined Radio on Multicore CPUs</strong> <br />
<i>Wiley Concurrency and Computation: Practice and Experience (CCPE) (Volume: 35), July 2023.</i><br />
<a title="Web link" href="https://doi.org/10.1002/cpe.7820" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1002/cpe.7820');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.science/hal-04156404v3/file/Cassagne2023%20-%20A%20DSEL%20for%20High%20Throughput%20and%20Low%20Latency%20Software-Defined%20Radio%20on%20Multicore%20CPUs%20%5Bpreprint%5D.pdf" target="_blank" onclick="return trackOutboundLink('https://hal.science/hal-04156404v3/file/Cassagne2023%20-%20A%20DSEL%20for%20High%20Throughput%20and%20Low%20Latency%20Software-Defined%20Radio%20on%20Multicore%20CPUs%20%5Bpreprint%5D.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Olivier Hartmann, Mathieu Léonardon, Kun He, Camille Leroux, Romain Tajan, Olivier Aumage, Denis Barthou, Thibaud Tonnellier, Vincent Pignoly, Bertrand Le Gal and Christophe Jégo<br />
<strong>AFF3CT: A Fast Forward Error Correction Toolbox!</strong> <br />
<i>Elsevier SoftwareX (Volume: 10), October 2019.</i><br />
<a title="Web link" href="https://doi.org/10.1016/j.softx.2019.100345" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1016/j.softx.2019.100345');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.inria.fr/hal-02358306/file/Cassagne2019a%20-%20AFF3CT%3A%20A%20Fast%20Forward%20Error%20Correction%20Toolbox.pdf" target="_blank" onclick="return trackOutboundLink('https://hal.inria.fr/hal-02358306/file/Cassagne2019a%20-%20AFF3CT%3A%20A%20Fast%20Forward%20Error%20Correction%20Toolbox.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Mathieu Léonardon, Adrien Cassagne, Camille Leroux, Christophe Jégo, Louis-Philippe Hamelin and Yvon Savaria<br />
<strong>Fast and Flexible Software Polar List Decoders</strong> <br />
<i>Springer Journal of Signal Processing Systems (JSPS) (Volume: 91, Issue: 8), January 2019.</i><br />
<a title="Web link" href="https://doi.org/10.1007/s11265-018-1430-3" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1007/s11265-018-1430-3');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.inria.fr/hal-01987848/document" target="_blank" onclick="return trackOutboundLink('https://hal.inria.fr/hal-01987848/document');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Thibaud Tonnellier, Camille Leroux, Bertrand Le Gal, Benjamin Gadat, Christophe Jégo and Nicolas Van Wambeke <br />
<strong>Lowering the Error Floor of Turbo Codes With CRC Verification</strong> <br />
<i>IEEE Wireless Communications Letters (Volume: 5, Issue: 4), August 2016.</i><br />
<a title="Web link" href="https://doi.org/10.1109/LWC.2016.2571283" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/LWC.2016.2571283');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<!--<a title="Article" href="https://www.researchgate.net/profile/Thibaud_Tonnellier/publication/303426710_Lowering_the_Error_Floor_of_Turbo_Codes_with_CRC_Verification/links/593127390f7e9beee76b0fcf/Lowering-the-Error-Floor-of-Turbo-Codes-with-CRC-Verification.pdf" target="_blank" onclick="return trackOutboundLink('https://www.researchgate.net/profile/Thibaud_Tonnellier/publication/303426710_Lowering_the_Error_Floor_of_Turbo_Codes_with_CRC_Verification/links/593127390f7e9beee76b0fcf/Lowering-the-Error-Floor-of-Turbo-Codes-with-CRC-Verification.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>-->
</li>
<li>
Bertrand Le Gal, Camille Leroux and Christophe Jégo <br />
<strong>Multi-Gb/s Software Decoding of Polar Codes</strong> <br />
<i>IEEE Transactions on Signal Processing (Volume: 63, Issue: 2), January 2015.</i><br />
<a title="Web link" href="https://doi.org/10.1109/TSP.2014.2371781" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/TSP.2014.2371781');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://www.researchgate.net/profile/Bertrand_Le_Gal/publication/273397923_Multi-Gbs_Software_Decoding_of_Polar_Codes/links/550da8800cf2ac2905a92b9f/Multi-Gb-s-Software-Decoding-of-Polar-Codes.pdf" target="_blank" onclick="return trackOutboundLink('https://www.researchgate.net/profile/Bertrand_Le_Gal/publication/273397923_Multi-Gbs_Software_Decoding_of_Polar_Codes/links/550da8800cf2ac2905a92b9f/Multi-Gb-s-Software-Decoding-of-Polar-Codes.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
</ol>
</p>
<h2>Conference articles</h2>
<p>
<ol>
<li>
Adrien Cassagne, Mathieu Léonardon, Romain Tajan, Camille Leroux, Christophe Jégo, Olivier Aumage and Denis Barthou <br />
<strong>A Flexible and Portable Real-time DVB-S2 Transceiver using Multicore and SIMD CPUs</strong> <br />
<i>The 11th IEEE International Symposium on Topics in Coding (ISTC 2021), September 2021.</i><br />
<a title="Web link" href="https://doi.org/10.1109/ISTC49272.2021.9594063" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/ISTC49272.2021.9594063');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.archives-ouvertes.fr/hal-03336450/file/article.pdf" target="_blank" onclick="return trackOutboundLink('https://hal.archives-ouvertes.fr/hal-03336450/file/article.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<!--<a title="Poster" href="publications/Cassagne2016a - Beyond Gbps Turbo Decoder on Multi-Core CPUs [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2016a - Beyond Gbps Turbo Decoder on Multi-Core CPUs [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>-->
</li>
<li>
Mathieu Léonardon, Camille Leroux, David Binet, J.M. Pierre Langlois, Christophe Jégo and Yvon Savaria<br />
<strong>Custom Low Power Processor for Polar Decoding</strong> <br />
<i>The 51st IEEE International Symposium on Circuits & Systems (ISCAS 2018), May 2018.</i><br />
<a title="Web link" href="https://doi.org/10.1109/ISCAS.2018.8351739" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/ISCAS.2018.8351739');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<!--<a title="Article" href="https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8351739" target="_blank" onclick="return trackOutboundLink('https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8351739');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>-->
</li>
<li>
Adrien Cassagne, Olivier Aumage, Denis Barthou, Camille Leroux and Christophe Jégo<br />
<strong>MIPP: a Portable C++ SIMD Wrapper and its use for Error Correction Coding in 5G Standard</strong> <br />
<i>The 5th International Workshop on Programming Models for SIMD/Vector Processing (WPMVP 2018), February 2018.</i><br />
<a title="Web link" href="https://doi.org/10.1145/3178433.3178435" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1145/3178433.3178435');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.inria.fr/hal-01888010/document" target="_blank" onclick="return trackOutboundLink('https://hal.inria.fr/hal-01888010/document');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Slides" href="publications/Cassagne2018 - MIPP: a Portable C++ SIMD Wrapper and its use for Error Correction Coding in 5G Standard [slides].pdf" target="_blank"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Alireza Ghaffari, Mathieu Léonardon, Yvon Savaria, Christophe Jégo and Camille Leroux<br />
<strong>Improving Performance of SCMA MPA Decoders Using Estimation of Conditional Probabilities</strong> <br />
<i>The 15th IEEE International NEWCAS Conference (NEWCAS 2017), June 2017.</i><br />
<a title="Web link" href="https://doi.org/10.1109/NEWCAS.2017.8010095" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/NEWCAS.2017.8010095');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<!--<a title="Article" href="https://www.researchgate.net/profile/Seyed_Ghaffari4/publication/319043564_Improving_Performance_of_SCMA_MPA_Decoders_Using_Estimation_of_Conditional_Probabilities/links/59a04a78a6fdcc1a3148254e/Improving-Performance-of-SCMA-MPA-Decoders-Using-Estimation-of-Conditional-Probabilities.pdf" target="_blank" onclick="return trackOutboundLink('https://www.researchgate.net/profile/Seyed_Ghaffari4/publication/319043564_Improving_Performance_of_SCMA_MPA_Decoders_Using_Estimation_of_Conditional_Probabilities/links/59a04a78a6fdcc1a3148254e/Improving-Performance-of-SCMA-MPA-Decoders-Using-Estimation-of-Conditional-Probabilities.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>-->
</li>
<li>
Thibaud Tonnellier, Camille Leroux, Bertrand Le Gal, Christophe Jégo, Benjamin Gadat and Van Wambeke <br />
<strong>Lowering the Error Floor of Double-Binary Turbo Codes: the Flip and Check Algorithm</strong> <br />
<i>The 10th International Symposium on Turbo Codes and Iterative Information Processing (ISTC 2016), September 2016.</i><br />
<a title="Web link" href="https://doi.org/10.1109/ISTC.2016.7593096" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/ISTC.2016.7593096');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<!--<a title="Article" href="https://www.researchgate.net/profile/Thibaud_Tonnellier/publication/309342129_Lowering_the_error_floor_of_double-binary_turbo_codes_The_flip_and_check_algorithm/links/59ba5f5da6fdcc687235327d/Lowering-the-error-floor-of-double-binary-turbo-codes-The-flip-and-check-algorithm.pdf" target="_blank" onclick="return trackOutboundLink('https://www.researchgate.net/profile/Thibaud_Tonnellier/publication/309342129_Lowering_the_error_floor_of_double-binary_turbo_codes_The_flip_and_check_algorithm/links/59ba5f5da6fdcc687235327d/Lowering-the-error-floor-of-double-binary-turbo-codes-The-flip-and-check-algorithm.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>-->
</li>
<li>
Adrien Cassagne, Thibaud Tonnellier, Camille Leroux, Bertrand Le Gal, Olivier Aumage and Denis Barthou <br />
<strong>Beyond Gbps Turbo Decoder on Multi-Core CPUs</strong> <br />
<i>The 10th International Symposium on Turbo Codes and Iterative Information Processing (ISTC 2016), September 2016.</i><br />
<a title="Web link" href="https://doi.org/10.1109/ISTC.2016.7593092" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/ISTC.2016.7593092');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.inria.fr/hal-01363980/document" target="_blank" onclick="return trackOutboundLink('https://hal.inria.fr/hal-01363980/document');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Poster" href="publications/Cassagne2016a - Beyond Gbps Turbo Decoder on Multi-Core CPUs [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2016a - Beyond Gbps Turbo Decoder on Multi-Core CPUs [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Olivier Aumage, Camille Leroux, Denis Barthou and Bertrand Le Gal <br />
<strong>Energy Consumption Analysis of Software Polar Decoders on Low Power Processors</strong> <br />
<i>The 24nd European Signal Processing Conference (EUSIPCO 2016), September 2016.</i><br />
<a title="Web link" href="https://doi.org/10.1109/EUSIPCO.2016.7760327" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1109/EUSIPCO.2016.7760327');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.archives-ouvertes.fr/hal-01363975/document" target="_blank" onclick="return trackOutboundLink('https://hal.archives-ouvertes.fr/hal-01363975/document');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Poster" href="publications/Cassagne2016b - Energy Consumption Analysis of Software Polar Decoders on Low Power Processors [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2016b - Energy Consumption Analysis of Software Polar Decoders on Low Power Processors [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Bertrand Le Gal, Camille Leroux, Olivier Aumage and Denis Barthou <br />
<strong>An Efficient, Portable and Generic Library for Successive Cancellation Decoding of Polar Codes</strong> <br />
<i>The 28th International Workshop on Languages and Compilers for Parallel Computing (LCPC 2015), September 2015.</i><br />
<a title="Web link" href="https://doi.org/10.1007/978-3-319-29778-1_19" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.1007/978-3-319-29778-1_19');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.inria.fr/hal-01203105/document" target="_blank" onclick="return trackOutboundLink('https://hal.inria.fr/hal-01203105/document');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Slides" href="publications/Cassagne2015c - An Efficient, Portable and Generic Library for Successive Cancellation Decoding of Polar Codes [slides].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2015c - An Efficient, Portable and Generic Library for Successive Cancellation Decoding of Polar Codes [slides].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Poster" href="publications/Cassagne2015c - An Efficient, Portable and Generic Library for Successive Cancellation Decoding of Polar Codes [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2015c - An Efficient, Portable and Generic Library for Successive Cancellation Decoding of Polar Codes [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
</ol>
</p>
<h2>Pre-print Articles</h2>
<p>
<ol>
<li>
Diane Orhan, Laércio Lima Pilla, Denis Barthou, Adrien Cassagne, Olivier Aumage, Romain Tajan, Christophe Jégo and Camille Leroux<br />
<strong>OTAC: Optimal Scheduling for Pipelined and Replicated Task Chains for Software-Defined Radio</strong> <br />
<i>October 2023</i><br />
<a title="Web link" href="https://hal.science/hal-04228117" target="_blank" onclick="return trackOutboundLink('https://hal.science/hal-04228117');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Article" href="https://hal.science/hal-04228117/file/otac-optimal-scheduling-hal.pdf" target="_blank" onclick="return trackOutboundLink('https://hal.science/hal-04228117/file/otac-optimal-scheduling-hal.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
</ol>
</p>
<h2>Miscellaneous</h2>
<p>
<ol>
<li>
Adrien Cassagne<br />
<strong>Optimization and Parallelization Methods for Software-defined Radio</strong> <br />
<i>PhD thesis, Bordeaux, France, December 2020</i><br />
<a title="Web link" href="https://www.theses.fr/2020BORD0231" target="_blank" onclick="return trackOutboundLink('https://www.theses.fr/2020BORD0231');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Manuscript" href="https://tel.archives-ouvertes.fr/tel-03118420/file/CASSAGNE_ADRIEN_2020.pdf" target="_blank" onclick="return trackOutboundLink('https://tel.archives-ouvertes.fr/tel-03118420/file/CASSAGNE_ADRIEN_2020.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Camille Leroux, Olivier Aumage, Christophe Jégo, Denis Barthou<br />
<strong>AFF3CT: A Fast Forward Error Correction Toolbox</strong> <br />
<i>Poster at the Graduate School, Bordeaux, France, April 2019</i><br />
<a title="Web link" href="https://doi.org/10.13140/RG.2.2.25132.10886/1" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.13140/RG.2.2.25132.10886/1');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Poster" href="publications/Cassagne2019a - AFF3CT: A Fast Forward Error Correction Toolbox [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2019a - AFF3CT: A Fast Forward Error Correction Toolbox [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Olivier Hartmann, Mathieu Léonardon, Camille Leroux and Christophe Jégo<br />
<strong>A Fast Forward Error Correction Toolbox: Seminary</strong> <br />
<i>Presentation at the IMS laboratory, Bordeaux, France, March 2018</i><br />
<a title="Slides" href="publications/Cassagne2018a - A Fast Forward Error Correction Toolbox Seminary.pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2018a - A Fast Forward Error Correction Toolbox Seminary.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Olivier Hartmann, Mathieu Léonardon, Thibaud Tonnellier, Guillaume Delbergue, Camille Leroux, Romain Tajan, Bertrand Le Gal, Christophe Jégo, Olivier Aumage and Denis Barthou<br />
<strong>Fast Simulation and Prototyping with AFF3CT</strong> <br />
<i>The 20th International Workshop on Signal Processing Systems (SiPS 2017), October 2017 (demo night).</i><br />
<a title="Web link" href="https://doi.org/10.13140/RG.2.2.10295.42409/1" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.13140/RG.2.2.10295.42409/1');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Abstract" href="https://sips2017.sciencesconf.org/data/demo_9.pdf" target="_blank"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Poster" href="publications/Cassagne2017a - Fast Simulation and Prototyping with AFF3CT [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2017a - Fast Simulation and Prototyping with AFF3CT [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
<li>
Adrien Cassagne, Mathieu Léonardon, Olivier Hartmann, Thibaud Tonnellier, Guillaume Delbergue, Valentin Giraud, Camille Leroux, Romain Tajan, Bertrand Le Gal, Christophe Jégo, Olivier Aumage and Denis Barthou<br />
<strong>AFF3CT : Un environnement de simulation pour le codage de canal</strong> <br />
<i>GdR SoC², June 2017 (in French).</i><br />
<a title="Web link" href="https://doi.org/10.13140/RG.2.2.13492.91520" target="_blank" onclick="return trackOutboundLink('https://doi.org/10.13140/RG.2.2.13492.91520');"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a title="Abstract" href="publications/Cassagne2017 - AFF3CT : Un environnement de simulation pour le codage de canal.pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2017 - AFF3CT : Un environnement de simulation pour le codage de canal.pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
<a title="Poster" href="publications/Cassagne2017 - AFF3CT : Un environnement de simulation pour le codage de canal [poster].pdf" target="_blank" onclick="return trackOutboundLink('publications/Cassagne2017 - AFF3CT : Un environnement de simulation pour le codage de canal [poster].pdf');"><i class="fas fa-file-pdf" aria-hidden="true"></i></a>
</li>
</ol>
</p>
<div class="mb-4"></div>
<hr>
<footer class="container">
<p class="float-right"><a href="#"><i class="fa fa-level-up-alt" aria-hidden="true"> </i>Back to top</a></p>
<!--
<p>Funded by <a href="http://www.agence-nationale-recherche.fr/" target="_blank" onclick="return trackOutboundLink('http://www.agence-nationale-recherche.fr/');">ANR</a>: <a href="http://www-labsticc.univ-ubs.fr/~boutillon/NAND/" target="_blank" onclick="return trackOutboundLink('http://www-labsticc.univ-ubs.fr/~boutillon/NAND/');">NAND</a> (ANR-15-CE25-0006-01) and <a href="http://cpu.labex.u-bordeaux.fr/" target="_blank" onclick="return trackOutboundLink('http://cpu.labex.u-bordeaux.fr/');">CPU LabEx (Bordeaux)</a> (ANR-10-IDEX-03-02).</p>
-->
</footer>
</div>
</body>
</html>