Delete div2k_gaussian_debluring
Browse files
div2k_gaussian_debluring/benchmarks.html
DELETED
|
@@ -1,1199 +0,0 @@
|
|
| 1 |
-
<html>
|
| 2 |
-
<head>
|
| 3 |
-
<meta charset="utf-8"/>
|
| 4 |
-
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📈</text></svg>">
|
| 5 |
-
<style>
|
| 6 |
-
/*
|
| 7 |
-
Comprehensive Base Stylesheet - https://fvsch.com/base-stylesheet/
|
| 8 |
-
Makes browser default styles more consistent, creating a canvas that you
|
| 9 |
-
should modify for your project. Fully commented. Last update: 2011-10-02.
|
| 10 |
-
*/
|
| 11 |
-
|
| 12 |
-
/* CONTAINERS */
|
| 13 |
-
body {
|
| 14 |
-
margin: auto;
|
| 15 |
-
max-width: 70em;
|
| 16 |
-
padding: 1.5em 3% 8em; /* Browsers have default 8px margins _or_ padding! */
|
| 17 |
-
font-size: 100%; /* See: http://www.informationarchitects.jp/en/100e2r/ */
|
| 18 |
-
line-height: 1.5; /* Default value, `normal`, depends on the font */
|
| 19 |
-
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji; /* ripoff from github */
|
| 20 |
-
}
|
| 21 |
-
/* HTML5 blocks - needed in older browsers */
|
| 22 |
-
article, aside, figcaption, figure, footer, header, nav, section {
|
| 23 |
-
display: block;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
/* PARAGRAPHS */
|
| 27 |
-
h1, h2, h3, h4 {
|
| 28 |
-
line-height: 1.25; /* Bigger text is often nicer with smaller line height */
|
| 29 |
-
font-weight: bold; /* Browser default. Use `normal` for less bulky titles */
|
| 30 |
-
}
|
| 31 |
-
h1 {
|
| 32 |
-
margin: 0.5em 0 .5em; /* Titles should be close to the text they describe */
|
| 33 |
-
font-size: 2em;
|
| 34 |
-
}
|
| 35 |
-
h2 {
|
| 36 |
-
margin: 2em 0 .5em; /* Titles should be close to the text they describe */
|
| 37 |
-
font-size: 1.5em;}
|
| 38 |
-
h3 {
|
| 39 |
-
margin: 3em 0 .5em; /* Titles should be close to the text they describe */
|
| 40 |
-
font-size: 1.2em;}
|
| 41 |
-
h4 {
|
| 42 |
-
margin: 1.5em 0 .5em; /* Titles should be close to the text they describe */
|
| 43 |
-
font-size: 1em;
|
| 44 |
-
}
|
| 45 |
-
ul, ol {
|
| 46 |
-
margin: 1em 0; /* Default for all browsers except IE */
|
| 47 |
-
padding-left: 40px; /* IE has a 40px margin-left instead */
|
| 48 |
-
}
|
| 49 |
-
p {
|
| 50 |
-
margin: 1em 0;
|
| 51 |
-
}
|
| 52 |
-
blockquote {
|
| 53 |
-
margin: 1em 40px; /* Same for all browsers - Customize or remove */
|
| 54 |
-
}
|
| 55 |
-
figure {
|
| 56 |
-
margin: 1em 0; /* Default in HTML5 spec: `1em 40px` */
|
| 57 |
-
}
|
| 58 |
-
|
| 59 |
-
/* LINKS */
|
| 60 |
-
/* Default browser styles (from Firefox, similar in most browsers) */
|
| 61 |
-
a {
|
| 62 |
-
text-decoration: none;
|
| 63 |
-
}
|
| 64 |
-
a:link,
|
| 65 |
-
a:visited {
|
| 66 |
-
color: DodgerBlue;
|
| 67 |
-
}
|
| 68 |
-
a:active {
|
| 69 |
-
color: #EE0000;
|
| 70 |
-
}
|
| 71 |
-
/* Add your own styles for hover _and_ focus styles */
|
| 72 |
-
a:hover, a:focus {
|
| 73 |
-
text-decoration: none;
|
| 74 |
-
}
|
| 75 |
-
/* Remove dotted outline clicked links - Keeps outline on focus */
|
| 76 |
-
a:active, a:hover {
|
| 77 |
-
outline: none;
|
| 78 |
-
}
|
| 79 |
-
/* No border around images in links */
|
| 80 |
-
a img {
|
| 81 |
-
border: none;
|
| 82 |
-
}
|
| 83 |
-
|
| 84 |
-
/* MISC TEXT-LEVEL ELEMENTS */
|
| 85 |
-
/* Make quotations and references more visible */
|
| 86 |
-
q, cite {
|
| 87 |
-
font-style: italic;
|
| 88 |
-
}
|
| 89 |
-
/* Remove automatic quotation marks for inline quotations
|
| 90 |
-
(`q {quotes:none}` not implemented in WebKit) */
|
| 91 |
-
q:before, q:after {
|
| 92 |
-
content: "";
|
| 93 |
-
}
|
| 94 |
-
/* Stopping superscript and subscript from adding to the line's leading */
|
| 95 |
-
sup, sub {
|
| 96 |
-
line-height: 0;
|
| 97 |
-
}
|
| 98 |
-
|
| 99 |
-
/* FORMS */
|
| 100 |
-
fieldset {
|
| 101 |
-
margin: 0; /* Common default is `0 2px` */
|
| 102 |
-
padding: 0; /* Common default (roughly): `.35em .625em .75em` */
|
| 103 |
-
border: none;
|
| 104 |
-
}
|
| 105 |
-
input, button, select {
|
| 106 |
-
vertical-align: middle; /* Helps keep form elements roughly aligned */
|
| 107 |
-
}
|
| 108 |
-
|
| 109 |
-
select {
|
| 110 |
-
border: 1px solid #aaa;
|
| 111 |
-
border-radius: 3px;
|
| 112 |
-
padding: 5px;
|
| 113 |
-
background-color: transparent;
|
| 114 |
-
padding: 4px;
|
| 115 |
-
color: #333;
|
| 116 |
-
}
|
| 117 |
-
|
| 118 |
-
/* TABLES */
|
| 119 |
-
table {
|
| 120 |
-
border-collapse: collapse; /* Merges cell borders together */
|
| 121 |
-
/* Browser default: border-collapse: separate; border-spacing: 2px; */
|
| 122 |
-
}
|
| 123 |
-
td, th {
|
| 124 |
-
padding: 1px; /* Same as browser default - set to "0" to remove padding */
|
| 125 |
-
vertical-align: top; /* Default is "middle" */
|
| 126 |
-
text-align: left; /* Default for TH elements is "center" */
|
| 127 |
-
}
|
| 128 |
-
td:first-child, th:first-child {
|
| 129 |
-
empty-cells: hide; /* Hide empty cells when they're the first in the row */
|
| 130 |
-
}
|
| 131 |
-
|
| 132 |
-
/* Custom stuff on top of the base style sheet */
|
| 133 |
-
.status {
|
| 134 |
-
font-weight: bold;
|
| 135 |
-
font-family: monospace;
|
| 136 |
-
color: white;
|
| 137 |
-
padding: .25em .4em;
|
| 138 |
-
border-radius: .2em;
|
| 139 |
-
}
|
| 140 |
-
.success {
|
| 141 |
-
background-color: forestgreen;
|
| 142 |
-
}
|
| 143 |
-
.failure {
|
| 144 |
-
background-color: orangered;
|
| 145 |
-
}
|
| 146 |
-
.error {
|
| 147 |
-
background-color: firebrick;
|
| 148 |
-
}
|
| 149 |
-
|
| 150 |
-
.summary a {
|
| 151 |
-
font-weight: 500;
|
| 152 |
-
}
|
| 153 |
-
|
| 154 |
-
.highlight {
|
| 155 |
-
margin: 0;
|
| 156 |
-
}
|
| 157 |
-
|
| 158 |
-
.highlight pre {
|
| 159 |
-
padding: 1em;
|
| 160 |
-
border: 1px solid #eee;
|
| 161 |
-
background-color: #f5f5f5;
|
| 162 |
-
margin-bottom: 0.1em;
|
| 163 |
-
overflow-x: auto;
|
| 164 |
-
}
|
| 165 |
-
|
| 166 |
-
.source {
|
| 167 |
-
margin: 0.3em 0 2em;
|
| 168 |
-
font-size: 90%;
|
| 169 |
-
}
|
| 170 |
-
|
| 171 |
-
.source a:visited,
|
| 172 |
-
.source a:link {
|
| 173 |
-
color: #666;
|
| 174 |
-
text-decoration: underline;
|
| 175 |
-
}
|
| 176 |
-
.source a:hover, a:focus {
|
| 177 |
-
color: #666;
|
| 178 |
-
text-decoration: underline;
|
| 179 |
-
}
|
| 180 |
-
|
| 181 |
-
/* Pandas dataframe css */
|
| 182 |
-
/* Taken from: https://github.com/spatialaudio/nbsphinx/blob/fb3ba670fc1ba5f54d4c487573dbc1b4ecf7e9ff/src/nbsphinx.py#L587-L619 */
|
| 183 |
-
|
| 184 |
-
table.dataframe {
|
| 185 |
-
border: none !important;
|
| 186 |
-
border-collapse: collapse;
|
| 187 |
-
border-spacing: 0;
|
| 188 |
-
border-color: transparent;
|
| 189 |
-
color: black;
|
| 190 |
-
font-size: .9em;
|
| 191 |
-
table-layout: fixed;
|
| 192 |
-
border-radius:6px;
|
| 193 |
-
}
|
| 194 |
-
table.datatable {
|
| 195 |
-
border-radius:6px;
|
| 196 |
-
}
|
| 197 |
-
table.dataframe thead {
|
| 198 |
-
border-bottom: 1px solid black;
|
| 199 |
-
vertical-align: bottom;
|
| 200 |
-
}
|
| 201 |
-
table.dataframe tr,
|
| 202 |
-
table.dataframe th,
|
| 203 |
-
table.dataframe td {
|
| 204 |
-
text-align: left;
|
| 205 |
-
vertical-align: middle;
|
| 206 |
-
padding: 0.5em 0.5em;
|
| 207 |
-
line-height: normal;
|
| 208 |
-
white-space: normal;
|
| 209 |
-
max-width: none;
|
| 210 |
-
border: none;
|
| 211 |
-
}
|
| 212 |
-
table.dataframe th {
|
| 213 |
-
font-weight: bold;
|
| 214 |
-
}
|
| 215 |
-
table.dataframe tbody tr:nth-child(odd) {
|
| 216 |
-
background: #f5f5f5;
|
| 217 |
-
}
|
| 218 |
-
table.datatable.display tbody tr:hover {
|
| 219 |
-
background-color: #ddd !important;
|
| 220 |
-
}
|
| 221 |
-
a.anchor:visited,
|
| 222 |
-
a.anchor:link {
|
| 223 |
-
padding-left: .2em;
|
| 224 |
-
color: #999;
|
| 225 |
-
}
|
| 226 |
-
div.dataTables_filter, div.dataTables_length {
|
| 227 |
-
padding: 20px;
|
| 228 |
-
}
|
| 229 |
-
|
| 230 |
-
.backtotop {
|
| 231 |
-
text-decoration: none;
|
| 232 |
-
display: flex;
|
| 233 |
-
position: fixed;
|
| 234 |
-
font-size: 50px;
|
| 235 |
-
right: 40px;
|
| 236 |
-
bottom: 40px;
|
| 237 |
-
align-items: center;
|
| 238 |
-
justify-content: center;
|
| 239 |
-
order: 2;
|
| 240 |
-
margin-left: auto;
|
| 241 |
-
z-index: 999;
|
| 242 |
-
}
|
| 243 |
-
|
| 244 |
-
.priority1 {
|
| 245 |
-
color: purple;
|
| 246 |
-
}
|
| 247 |
-
.priority2 {
|
| 248 |
-
color: firebrick;
|
| 249 |
-
}
|
| 250 |
-
.priority3 {
|
| 251 |
-
color: chocolate;
|
| 252 |
-
}
|
| 253 |
-
td.number {
|
| 254 |
-
text-align: right;
|
| 255 |
-
}
|
| 256 |
-
|
| 257 |
-
/* Style buttons */
|
| 258 |
-
.btn {
|
| 259 |
-
background-color: DodgerBlue; /* Blue background */
|
| 260 |
-
border: none; /* Remove borders */
|
| 261 |
-
color: white; /* White text */
|
| 262 |
-
padding: 12px 16px; /* Some padding */
|
| 263 |
-
font-size: 16px; /* Set a font size */
|
| 264 |
-
cursor: pointer; /* Mouse pointer on hover */
|
| 265 |
-
min-height: 46px;
|
| 266 |
-
/**
|
| 267 |
-
* Vertically align the icon and the text
|
| 268 |
-
* inside the button
|
| 269 |
-
*/
|
| 270 |
-
display: inline-flex;
|
| 271 |
-
flex-direction: row;
|
| 272 |
-
align-items: center;
|
| 273 |
-
justify-content: center;
|
| 274 |
-
order: 2;
|
| 275 |
-
margin-left: auto;
|
| 276 |
-
z-index: 999;
|
| 277 |
-
}
|
| 278 |
-
|
| 279 |
-
/* Style buttons */
|
| 280 |
-
.btn {
|
| 281 |
-
background-color: DodgerBlue; /* Blue background */
|
| 282 |
-
border: none; /* Remove borders */
|
| 283 |
-
color: white; /* White text */
|
| 284 |
-
padding: 12px 16px; /* Some padding */
|
| 285 |
-
font-size: 16px; /* Set a font size */
|
| 286 |
-
cursor: pointer; /* Mouse pointer on hover */
|
| 287 |
-
min-height: 46px;
|
| 288 |
-
/**
|
| 289 |
-
* Vertically align the icon and the text
|
| 290 |
-
* inside the button
|
| 291 |
-
*/
|
| 292 |
-
display: inline-flex;
|
| 293 |
-
flex-direction: row;
|
| 294 |
-
align-items: center;
|
| 295 |
-
}
|
| 296 |
-
|
| 297 |
-
/* Darker background on mouse-over */
|
| 298 |
-
.btn:hover {
|
| 299 |
-
background-color: RoyalBlue;
|
| 300 |
-
}
|
| 301 |
-
|
| 302 |
-
/* The main part of the page should adapt to the presence of the sidebar */
|
| 303 |
-
.main {
|
| 304 |
-
margin-left: 200px; /* same as sidebar width to avoid overlaps */
|
| 305 |
-
padding: 1px 16px;
|
| 306 |
-
height: 1000px;
|
| 307 |
-
}
|
| 308 |
-
|
| 309 |
-
.btn svg {
|
| 310 |
-
width: 1.5rem;
|
| 311 |
-
height: 1.5rem;
|
| 312 |
-
color: white;
|
| 313 |
-
}
|
| 314 |
-
|
| 315 |
-
/* Select all elements after any other element in a .btn */
|
| 316 |
-
.btn > * + * {
|
| 317 |
-
margin-left: 0.5rem;
|
| 318 |
-
}
|
| 319 |
-
|
| 320 |
-
#btn_subinfo:hover {
|
| 321 |
-
cursor: pointer;
|
| 322 |
-
}
|
| 323 |
-
|
| 324 |
-
#btn_subinfo svg {
|
| 325 |
-
width: 1rem;
|
| 326 |
-
height: 1rem;
|
| 327 |
-
}
|
| 328 |
-
|
| 329 |
-
/*----------------------------------------*/
|
| 330 |
-
/***** Stylesheet for the hover index *****/
|
| 331 |
-
/*----------------------------------------*/
|
| 332 |
-
|
| 333 |
-
/* Place rectangles in a grid */
|
| 334 |
-
.grid {
|
| 335 |
-
position: relative;
|
| 336 |
-
/* each rectangle is dependant of others */
|
| 337 |
-
margin: 0 auto;
|
| 338 |
-
padding: 1em 0 4em;
|
| 339 |
-
/* padding top horizontal bottom */
|
| 340 |
-
display: grid;
|
| 341 |
-
/* type of boxes generated */
|
| 342 |
-
max-width: 1000px;
|
| 343 |
-
list-style: none;
|
| 344 |
-
/* no item */
|
| 345 |
-
text-align: center;
|
| 346 |
-
column-gap: 2em;
|
| 347 |
-
/* space between columns */
|
| 348 |
-
}
|
| 349 |
-
|
| 350 |
-
/* Figure inside grid */
|
| 351 |
-
.grid figure {
|
| 352 |
-
position: relative;
|
| 353 |
-
float: left;
|
| 354 |
-
overflow: hidden;
|
| 355 |
-
/* overflow not taken into account */
|
| 356 |
-
margin: 10px 1%;
|
| 357 |
-
width: 100%;
|
| 358 |
-
/* 100% of the column */
|
| 359 |
-
background: #3085a3;
|
| 360 |
-
text-align: center;
|
| 361 |
-
cursor: pointer;
|
| 362 |
-
/* change shape cursor */
|
| 363 |
-
border-radius: 30px;
|
| 364 |
-
/* rounded corners */
|
| 365 |
-
}
|
| 366 |
-
|
| 367 |
-
/* Each figure contains an img */
|
| 368 |
-
.grid figure img {
|
| 369 |
-
position: relative;
|
| 370 |
-
display: block;
|
| 371 |
-
max-height: 100%;
|
| 372 |
-
max-width: 100%;
|
| 373 |
-
opacity: 1;
|
| 374 |
-
/* over a dummy image */
|
| 375 |
-
}
|
| 376 |
-
|
| 377 |
-
/* Style caption (title of benchmarks) */
|
| 378 |
-
.grid figure figcaption {
|
| 379 |
-
padding: 0.1em;
|
| 380 |
-
/* add space */
|
| 381 |
-
color: #fff;
|
| 382 |
-
/* writing color */
|
| 383 |
-
text-transform: uppercase;
|
| 384 |
-
/* title in uppercase */
|
| 385 |
-
font-size: 1.25em;
|
| 386 |
-
}
|
| 387 |
-
|
| 388 |
-
/* Small sized screens */
|
| 389 |
-
@media (min-width: 600px) {
|
| 390 |
-
.grid {
|
| 391 |
-
grid-template-columns: repeat(2, 1fr);
|
| 392 |
-
}
|
| 393 |
-
|
| 394 |
-
/* split in 2 columns */
|
| 395 |
-
}
|
| 396 |
-
|
| 397 |
-
/* Larger sized screens */
|
| 398 |
-
@media (min-width: 900px) {
|
| 399 |
-
.grid {
|
| 400 |
-
grid-template-columns: repeat(3, 1fr);
|
| 401 |
-
}
|
| 402 |
-
|
| 403 |
-
/* split in 3 columns */
|
| 404 |
-
}
|
| 405 |
-
|
| 406 |
-
/* Position and style of <a> elements (the View more) */
|
| 407 |
-
.grid figure figcaption,
|
| 408 |
-
.grid figure figcaption>a {
|
| 409 |
-
position: absolute;
|
| 410 |
-
top: 0em;
|
| 411 |
-
/* no space offset top */
|
| 412 |
-
left: 0;
|
| 413 |
-
width: 100%;
|
| 414 |
-
height: 100%;
|
| 415 |
-
}
|
| 416 |
-
|
| 417 |
-
/* only to figcaption <a> tag */
|
| 418 |
-
.grid figure figcaption>a {
|
| 419 |
-
z-index: 1000;
|
| 420 |
-
/* top level */
|
| 421 |
-
text-indent: 0%;
|
| 422 |
-
white-space: nowrap;
|
| 423 |
-
font-size: 0;
|
| 424 |
-
/* do not display the View more */
|
| 425 |
-
opacity: 1;
|
| 426 |
-
}
|
| 427 |
-
|
| 428 |
-
/* h2: Problem name (LASSO, ...) */
|
| 429 |
-
.grid figure h2 {
|
| 430 |
-
word-spacing: 0em;
|
| 431 |
-
font-weight: 300;
|
| 432 |
-
}
|
| 433 |
-
|
| 434 |
-
.grid figure h2 span {
|
| 435 |
-
font-weight: 800;
|
| 436 |
-
}
|
| 437 |
-
|
| 438 |
-
.grid figure h2,
|
| 439 |
-
.grid figure p {
|
| 440 |
-
margin: 0;
|
| 441 |
-
}
|
| 442 |
-
|
| 443 |
-
/* p: number of files */
|
| 444 |
-
.grid figure p {
|
| 445 |
-
letter-spacing: 1px;
|
| 446 |
-
font-size: 70%;
|
| 447 |
-
}
|
| 448 |
-
|
| 449 |
-
/* Default color */
|
| 450 |
-
figure.effect-ruby {
|
| 451 |
-
height: 150px;
|
| 452 |
-
background-color: #2c3e50;
|
| 453 |
-
}
|
| 454 |
-
|
| 455 |
-
/* Color when hovering */
|
| 456 |
-
figure.effect-ruby:hover {
|
| 457 |
-
background-color: DodgerBlue;
|
| 458 |
-
}
|
| 459 |
-
|
| 460 |
-
/* Define transformation */
|
| 461 |
-
figure.effect-ruby img {
|
| 462 |
-
opacity: 0;
|
| 463 |
-
transition: opacity 0.35s, transform 0.35s;
|
| 464 |
-
/* transition time */
|
| 465 |
-
transform: scale(1.15);
|
| 466 |
-
/* size transformation -> bigger */
|
| 467 |
-
}
|
| 468 |
-
|
| 469 |
-
/* transformation with hovering */
|
| 470 |
-
figure.effect-ruby:hover img {
|
| 471 |
-
opacity: 0;
|
| 472 |
-
transform: scale(1);
|
| 473 |
-
/* size -> smaller */
|
| 474 |
-
}
|
| 475 |
-
|
| 476 |
-
/* Apply effect to problem name */
|
| 477 |
-
figure.effect-ruby h2 {
|
| 478 |
-
margin-top: 0;
|
| 479 |
-
transition: transform 0.35s;
|
| 480 |
-
/* transition time */
|
| 481 |
-
transform: translate3d(0, calc((150px - 100%)/2), 0);
|
| 482 |
-
font-size: 1.25em;
|
| 483 |
-
/* default font */
|
| 484 |
-
}
|
| 485 |
-
|
| 486 |
-
figure.effect-ruby p {
|
| 487 |
-
margin: 2em -1em 2em -1em;
|
| 488 |
-
padding: 1em 0em 1em 0em;
|
| 489 |
-
border: 1px solid #fff;
|
| 490 |
-
/* create sort of white frame */
|
| 491 |
-
opacity: 0;
|
| 492 |
-
transition: opacity 0.35s, transform 0.35s;
|
| 493 |
-
transform: translate3d(0, 20px, 0) scale(1.1);
|
| 494 |
-
/* size transform */
|
| 495 |
-
}
|
| 496 |
-
|
| 497 |
-
/* Transform title on hover */
|
| 498 |
-
figure.effect-ruby:hover h2 {
|
| 499 |
-
-webkit-transform: translate3d(0, 0, 0);
|
| 500 |
-
transform: translate3d(0px, 10px, 0) scale(0.8);
|
| 501 |
-
/* smaller */
|
| 502 |
-
margin-top: 0em;
|
| 503 |
-
/* move up */
|
| 504 |
-
}
|
| 505 |
-
|
| 506 |
-
figure.effect-ruby:hover p {
|
| 507 |
-
opacity: 1;
|
| 508 |
-
transform: translate3d(0, 0, 0) scale(1.2);
|
| 509 |
-
/* placement in box */
|
| 510 |
-
}
|
| 511 |
-
|
| 512 |
-
/* Button for inside the table with system informations */
|
| 513 |
-
.buttoncent {
|
| 514 |
-
border: none;
|
| 515 |
-
background-color: transparent;
|
| 516 |
-
outline: none;
|
| 517 |
-
text-align: center;
|
| 518 |
-
}
|
| 519 |
-
|
| 520 |
-
/* button for inside text
|
| 521 |
-
in benchmark page above graph for system informations */
|
| 522 |
-
.buttonleft {
|
| 523 |
-
border: none;
|
| 524 |
-
background-color: transparent;
|
| 525 |
-
outline: none;
|
| 526 |
-
text-align: center;
|
| 527 |
-
margin-left: 1px;
|
| 528 |
-
/* add margin */
|
| 529 |
-
}
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
/* switch slider with an adaptable height.
|
| 533 |
-
Change switch-height and switch-padding, and all the dimensions are adjusted.
|
| 534 |
-
See https://stackoverflow.com/questions/70590125/how-to-change-the-size-of-a-css-toggle-switch */
|
| 535 |
-
* {
|
| 536 |
-
--switch-height: 20px;
|
| 537 |
-
--switch-padding: 2px;
|
| 538 |
-
--switch-width: calc((var(--switch-height) * 2) - var(--switch-padding));
|
| 539 |
-
--slider-height: calc(var(--switch-height) - var(--switch-padding));
|
| 540 |
-
--slider-on: calc(var(--switch-height) - var(--switch-padding));
|
| 541 |
-
}
|
| 542 |
-
|
| 543 |
-
.switch {
|
| 544 |
-
position: relative;
|
| 545 |
-
display: inline-block;
|
| 546 |
-
width: var(--switch-width);
|
| 547 |
-
height: var(--switch-height);
|
| 548 |
-
}
|
| 549 |
-
|
| 550 |
-
.switch input {
|
| 551 |
-
opacity: 0;
|
| 552 |
-
width: 0;
|
| 553 |
-
height: 0;
|
| 554 |
-
}
|
| 555 |
-
|
| 556 |
-
.slider {
|
| 557 |
-
position: absolute;
|
| 558 |
-
cursor: pointer;
|
| 559 |
-
top: 0;
|
| 560 |
-
left: 0;
|
| 561 |
-
right: 0;
|
| 562 |
-
bottom: 0;
|
| 563 |
-
background-color: #ccc;
|
| 564 |
-
-webkit-transition: .4s;
|
| 565 |
-
transition: .4s;
|
| 566 |
-
}
|
| 567 |
-
|
| 568 |
-
.slider:before {
|
| 569 |
-
content: "";
|
| 570 |
-
position: absolute;
|
| 571 |
-
height: var(--slider-height);
|
| 572 |
-
width: var(--slider-height);
|
| 573 |
-
left: calc(var(--switch-padding) / 2);
|
| 574 |
-
bottom: calc(var(--switch-padding) / 2);
|
| 575 |
-
background-color: white;
|
| 576 |
-
-webkit-transition: .4s;
|
| 577 |
-
transition: .4s;
|
| 578 |
-
}
|
| 579 |
-
|
| 580 |
-
input:checked+.slider {
|
| 581 |
-
background-color: #2196F3;
|
| 582 |
-
}
|
| 583 |
-
|
| 584 |
-
input:focus+.slider {
|
| 585 |
-
box-shadow: 0 0 1px #2196F3;
|
| 586 |
-
}
|
| 587 |
-
|
| 588 |
-
input:checked+.slider:before {
|
| 589 |
-
-webkit-transform: translateX(var(--slider-on));
|
| 590 |
-
-ms-transform: translateX(var(--slider-on));
|
| 591 |
-
transform: translateX(var(--slider-on));
|
| 592 |
-
}
|
| 593 |
-
|
| 594 |
-
.slider.round {
|
| 595 |
-
border-radius: var(--slider-height);
|
| 596 |
-
}
|
| 597 |
-
|
| 598 |
-
.slider.round:before {
|
| 599 |
-
border-radius: 50%;
|
| 600 |
-
}
|
| 601 |
-
|
| 602 |
-
/*----------------------------------------*/
|
| 603 |
-
/***** Brand text animated *****/
|
| 604 |
-
/*----------------------------------------*/
|
| 605 |
-
|
| 606 |
-
|
| 607 |
-
.ml11 .text-wrapper {
|
| 608 |
-
position: relative;
|
| 609 |
-
display: inline-block;
|
| 610 |
-
padding-top: 0.1em;
|
| 611 |
-
padding-right: 0.05em;
|
| 612 |
-
padding-bottom: 0.15em;
|
| 613 |
-
}
|
| 614 |
-
|
| 615 |
-
.ml11 .line {
|
| 616 |
-
opacity: 0;
|
| 617 |
-
position: absolute;
|
| 618 |
-
left: 0;
|
| 619 |
-
height: 100%;
|
| 620 |
-
width: 3px;
|
| 621 |
-
background-color: #fff;
|
| 622 |
-
transform-origin: 0 50%;
|
| 623 |
-
}
|
| 624 |
-
|
| 625 |
-
.ml11 .line1 {
|
| 626 |
-
top: 0;
|
| 627 |
-
left: 0;
|
| 628 |
-
}
|
| 629 |
-
|
| 630 |
-
.ml11 .letter {
|
| 631 |
-
display: inline-block;
|
| 632 |
-
line-height: 1em;
|
| 633 |
-
font-family: 'Kanit', sans-serif;
|
| 634 |
-
}
|
| 635 |
-
|
| 636 |
-
/*----------------------------------------*/
|
| 637 |
-
/***** Plot *****/
|
| 638 |
-
/*----------------------------------------*/
|
| 639 |
-
|
| 640 |
-
@media (min-width: 768px) {
|
| 641 |
-
#unique_plot {
|
| 642 |
-
flex: 1 1 0%;
|
| 643 |
-
}
|
| 644 |
-
}
|
| 645 |
-
|
| 646 |
-
@media (max-width: 767px) {
|
| 647 |
-
#unique_plot {
|
| 648 |
-
flex: initial;
|
| 649 |
-
flex-shrink: 0;
|
| 650 |
-
}
|
| 651 |
-
}
|
| 652 |
-
|
| 653 |
-
.js-plotly-plot .plotly .modebar {
|
| 654 |
-
transform: translateX(-30px);
|
| 655 |
-
}
|
| 656 |
-
|
| 657 |
-
/*----------------------------------------*/
|
| 658 |
-
/***** Custom legend *****/
|
| 659 |
-
/*----------------------------------------*/
|
| 660 |
-
|
| 661 |
-
#plot_legend {
|
| 662 |
-
display: flex;
|
| 663 |
-
flex-direction: row;
|
| 664 |
-
flex-wrap: wrap;
|
| 665 |
-
}
|
| 666 |
-
|
| 667 |
-
#legend_title {
|
| 668 |
-
font-size: 1.2rem;
|
| 669 |
-
font-weight: bold;
|
| 670 |
-
}
|
| 671 |
-
|
| 672 |
-
#legend_help {
|
| 673 |
-
font-size: 0.75rem;
|
| 674 |
-
color: #475569;
|
| 675 |
-
}
|
| 676 |
-
|
| 677 |
-
.space-r-2>* {
|
| 678 |
-
margin-right: 0.5rem;
|
| 679 |
-
}
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
.objective-description-content {
|
| 683 |
-
visibility: hidden;
|
| 684 |
-
|
| 685 |
-
background-color: rgb(55 65 81);
|
| 686 |
-
color: #fff;
|
| 687 |
-
border-radius: 6px;
|
| 688 |
-
margin-top: 1.5em;
|
| 689 |
-
padding-right: 0.5em;
|
| 690 |
-
padding-left: 0.5em;
|
| 691 |
-
padding-top: 1em;
|
| 692 |
-
padding-bottom: 1em;
|
| 693 |
-
opacity: 90%;
|
| 694 |
-
max-width: 80ch;
|
| 695 |
-
max-height: 200px;
|
| 696 |
-
|
| 697 |
-
overflow-y: auto;
|
| 698 |
-
white-space: pre-wrap;
|
| 699 |
-
position: absolute;
|
| 700 |
-
z-index: 99999;
|
| 701 |
-
}
|
| 702 |
-
|
| 703 |
-
.objective-description-trigger {
|
| 704 |
-
display: flex;
|
| 705 |
-
flex-direction: row;
|
| 706 |
-
}
|
| 707 |
-
|
| 708 |
-
.objective-description-icon {
|
| 709 |
-
width: 1.25rem;
|
| 710 |
-
align-self: center;
|
| 711 |
-
|
| 712 |
-
border-radius: 50%;
|
| 713 |
-
}
|
| 714 |
-
|
| 715 |
-
.objective-description-trigger:hover .objective-description-content {
|
| 716 |
-
visibility: visible;
|
| 717 |
-
}
|
| 718 |
-
|
| 719 |
-
/* Description solver when hovered */
|
| 720 |
-
.curve-description-container {
|
| 721 |
-
position: relative;
|
| 722 |
-
display: inline-flex;
|
| 723 |
-
}
|
| 724 |
-
|
| 725 |
-
.curve-description-content {
|
| 726 |
-
display: flex;
|
| 727 |
-
flex-direction: column;
|
| 728 |
-
visibility: hidden;
|
| 729 |
-
background-color: rgb(55 65 81);
|
| 730 |
-
color: #fff;
|
| 731 |
-
border-radius: 6px;
|
| 732 |
-
padding-top: 0.5em;
|
| 733 |
-
padding-bottom: 0.6em;
|
| 734 |
-
padding-left: 0.5em;
|
| 735 |
-
padding-right: 0.5rem;
|
| 736 |
-
opacity: 90%;
|
| 737 |
-
|
| 738 |
-
width: max-content;
|
| 739 |
-
max-width: 80ch;
|
| 740 |
-
max-height: 500px;
|
| 741 |
-
white-space: pre-wrap;
|
| 742 |
-
|
| 743 |
-
/* position description with respect to container and put it top-center */
|
| 744 |
-
position: absolute;
|
| 745 |
-
transform: translate(0, -100%);
|
| 746 |
-
z-index: 99999;
|
| 747 |
-
}
|
| 748 |
-
|
| 749 |
-
/* Show description when hovered */
|
| 750 |
-
.curve-description-container:hover .curve-description-content {
|
| 751 |
-
visibility: visible;
|
| 752 |
-
}
|
| 753 |
-
|
| 754 |
-
/*Arrow at the bottom of the description*/
|
| 755 |
-
.curve-description-container .curve-description-content::after {
|
| 756 |
-
content: " ";
|
| 757 |
-
position: absolute;
|
| 758 |
-
top: 100%;
|
| 759 |
-
left: 20px;
|
| 760 |
-
margin-left: -5px;
|
| 761 |
-
border-width: 7px;
|
| 762 |
-
border-style: solid;
|
| 763 |
-
border-color: rgb(55 65 81) transparent transparent transparent;
|
| 764 |
-
}
|
| 765 |
-
|
| 766 |
-
.curve-description-title {
|
| 767 |
-
margin-bottom: 1em;
|
| 768 |
-
font-weight: bolder;
|
| 769 |
-
}
|
| 770 |
-
|
| 771 |
-
.curve-description-body {
|
| 772 |
-
max-height: 450px;
|
| 773 |
-
overflow-y: auto;
|
| 774 |
-
}
|
| 775 |
-
|
| 776 |
-
/*Plot config styling as a bag of tags*/
|
| 777 |
-
#plot_config_title {
|
| 778 |
-
font-weight: bold;
|
| 779 |
-
}
|
| 780 |
-
|
| 781 |
-
.config-item, .config-ctrl {
|
| 782 |
-
border-radius: 9999px;
|
| 783 |
-
padding-left: 1em;
|
| 784 |
-
padding-right: 1em;
|
| 785 |
-
color: white;
|
| 786 |
-
margin-left: 2ex;
|
| 787 |
-
|
| 788 |
-
cursor: pointer;
|
| 789 |
-
|
| 790 |
-
/* font styles*/
|
| 791 |
-
font-size: 0.875rem;
|
| 792 |
-
line-height: 1.25rem;
|
| 793 |
-
font-weight: 400;
|
| 794 |
-
}
|
| 795 |
-
|
| 796 |
-
.config-item {
|
| 797 |
-
background-color: rgb(91, 78, 255);
|
| 798 |
-
border-color: rgb(55 65 81);
|
| 799 |
-
}
|
| 800 |
-
.config-ctrl {
|
| 801 |
-
font-size: medium;
|
| 802 |
-
font-weight: bold;
|
| 803 |
-
background-color: rgb(34, 30, 94);
|
| 804 |
-
border-color: rgb(23, 37, 59);
|
| 805 |
-
}
|
| 806 |
-
|
| 807 |
-
.view_selector_label {
|
| 808 |
-
position: absolute;
|
| 809 |
-
width: 1px;
|
| 810 |
-
height: 1px;
|
| 811 |
-
padding: 0;
|
| 812 |
-
margin: -1px;
|
| 813 |
-
overflow: hidden;
|
| 814 |
-
clip: rect(0, 0, 0, 0);
|
| 815 |
-
white-space: nowrap;
|
| 816 |
-
border-width: 0;
|
| 817 |
-
}
|
| 818 |
-
|
| 819 |
-
.view_selector_select {
|
| 820 |
-
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
| 821 |
-
background-position: right 0.5rem center;
|
| 822 |
-
background-repeat: no-repeat;
|
| 823 |
-
background-size: 1.5em 1.5em;
|
| 824 |
-
padding-right: 2.5rem;
|
| 825 |
-
-webkit-print-color-adjust: exact;
|
| 826 |
-
color-adjust: exact;
|
| 827 |
-
-webkit-appearance: none;
|
| 828 |
-
-moz-appearance: none;
|
| 829 |
-
appearance: none;
|
| 830 |
-
background-color: #fff;
|
| 831 |
-
border-width: 1px;
|
| 832 |
-
font-size: 1rem;
|
| 833 |
-
line-height: 1.5rem;
|
| 834 |
-
--tw-shadow: 0 0 #0000;
|
| 835 |
-
--tw-border-opacity: 1;
|
| 836 |
-
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
| 837 |
-
}
|
| 838 |
-
|
| 839 |
-
.view.active {
|
| 840 |
-
border-color: rgb(37 99 235);!important;
|
| 841 |
-
color: rgb(37 99 235);!important;
|
| 842 |
-
}
|
| 843 |
-
|
| 844 |
-
/* Hide q1, q3, max, min, upper fence, lower fence on boxplot */
|
| 845 |
-
g.hovertext:has(path + [data-unformatted*="q1"]),
|
| 846 |
-
g.hovertext:has(path + [data-unformatted*="q3"]),
|
| 847 |
-
g.hovertext:has(path + [data-unformatted*="max"]),
|
| 848 |
-
g.hovertext:has(path + [data-unformatted*="min"]),
|
| 849 |
-
g.hovertext:has(path + [data-unformatted*="upper fence"]),
|
| 850 |
-
g.hovertext:has(path + [data-unformatted*="lower fence"])
|
| 851 |
-
{
|
| 852 |
-
display: none;
|
| 853 |
-
}
|
| 854 |
-
|
| 855 |
-
/* Fixed aspect ratio for plot containers on mobile devices for better readability */
|
| 856 |
-
/* plot_with_legend_container is used for scatter plots and is always present */
|
| 857 |
-
|
| 858 |
-
/* Mobile portrait: Use taller aspect ratio to fill vertical space */
|
| 859 |
-
@media (max-width: 767px) and (orientation: portrait) {
|
| 860 |
-
#plot_with_legend_container {
|
| 861 |
-
aspect-ratio: 3 / 4; /* Taller aspect ratio for portrait */
|
| 862 |
-
min-height: 400px;
|
| 863 |
-
max-height: 70vh;
|
| 864 |
-
}
|
| 865 |
-
|
| 866 |
-
#plot_container.js-plotly-plot {
|
| 867 |
-
aspect-ratio: 3 / 4;
|
| 868 |
-
min-height: 400px;
|
| 869 |
-
max-height: 70vh;
|
| 870 |
-
}
|
| 871 |
-
}
|
| 872 |
-
|
| 873 |
-
/* Mobile landscape: Use wider aspect ratio */
|
| 874 |
-
@media (max-width: 767px) and (orientation: landscape) {
|
| 875 |
-
#plot_with_legend_container {
|
| 876 |
-
aspect-ratio: 4 / 3;
|
| 877 |
-
min-height: 300px;
|
| 878 |
-
max-height: 80vh; /* Use most of screen height in landscape */
|
| 879 |
-
}
|
| 880 |
-
|
| 881 |
-
#plot_container.js-plotly-plot {
|
| 882 |
-
aspect-ratio: 4 / 3;
|
| 883 |
-
min-height: 300px;
|
| 884 |
-
max-height: 80vh;
|
| 885 |
-
}
|
| 886 |
-
}
|
| 887 |
-
|
| 888 |
-
/* Desktop: Remove aspect ratio constraints for flexibility */
|
| 889 |
-
@media (min-width: 768px) {
|
| 890 |
-
#plot_with_legend_container {
|
| 891 |
-
aspect-ratio: auto;
|
| 892 |
-
min-height: 600px;
|
| 893 |
-
max-height: none;
|
| 894 |
-
}
|
| 895 |
-
|
| 896 |
-
#plot_container.js-plotly-plot {
|
| 897 |
-
aspect-ratio: auto;
|
| 898 |
-
min-height: 0;
|
| 899 |
-
max-height: none;
|
| 900 |
-
}
|
| 901 |
-
}
|
| 902 |
-
</style>
|
| 903 |
-
|
| 904 |
-
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js" integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+" crossorigin="anonymous"></script>
|
| 905 |
-
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet" />
|
| 906 |
-
|
| 907 |
-
<script
|
| 908 |
-
src="https://code.jquery.com/jquery-3.5.1.min.js"
|
| 909 |
-
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
|
| 910 |
-
crossorigin="anonymous"></script>
|
| 911 |
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
| 912 |
-
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
|
| 913 |
-
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
|
| 914 |
-
<link href="https://cdn.datatables.net/1.10.22/css/jquery.dataTables.min.css" rel="stylesheet" />
|
| 915 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 916 |
-
</head>
|
| 917 |
-
|
| 918 |
-
<body>
|
| 919 |
-
|
| 920 |
-
|
| 921 |
-
|
| 922 |
-
<div class="main" id="main" style="margin-left: 0;">
|
| 923 |
-
<a id="top"></a>
|
| 924 |
-
<h1>
|
| 925 |
-
<a href="benchmarks.html"><button class="btn"><i class="fa fa-home"></i></button></a>
|
| 926 |
-
Benchopt results: benchmarks
|
| 927 |
-
<a href="https://github.com/deep-inverse/benchmarks">
|
| 928 |
-
<i class="fab fa-github-square"></i>
|
| 929 |
-
</a>
|
| 930 |
-
</h1>
|
| 931 |
-
|
| 932 |
-
<p><em>Last updated: 2026-01-14 16:17</em>
|
| 933 |
-
with <strong>1</strong> result files in total. <br>
|
| 934 |
-
</p>
|
| 935 |
-
|
| 936 |
-
<div class="menu" style="padding-left: 0px;">
|
| 937 |
-
<label for=select_cpu style="padding-left: 20px; color: #333">
|
| 938 |
-
CPU
|
| 939 |
-
</label>
|
| 940 |
-
<select id=select_cpu onchange="change(['cpu', 'ram (GB)', 'cuda'])">
|
| 941 |
-
<option value=""> Any </option>
|
| 942 |
-
|
| 943 |
-
<option value="<b>cpu</b>: 32"> 32 </option>
|
| 944 |
-
</select>
|
| 945 |
-
<label for=select_ram(GB) style="padding-left: 20px; color: #333">
|
| 946 |
-
RAM (GB)
|
| 947 |
-
</label>
|
| 948 |
-
<select id=select_ram(GB) onchange="change(['cpu', 'ram (GB)', 'cuda'])">
|
| 949 |
-
<option value=""> Any </option>
|
| 950 |
-
|
| 951 |
-
<option value="<b>ram (GB)</b>: 63"> 63 </option>
|
| 952 |
-
</select>
|
| 953 |
-
<label for=select_cuda style="padding-left: 20px; color: #333">
|
| 954 |
-
CUDA
|
| 955 |
-
</label>
|
| 956 |
-
<select id=select_cuda onchange="change(['cpu', 'ram (GB)', 'cuda'])">
|
| 957 |
-
<option value=""> Any </option>
|
| 958 |
-
|
| 959 |
-
<option value="<b>cuda</b>: NVIDIA GeForce RTX 4090: cuda_12.4"> NVIDIA GeForce RTX 4090: cuda_12.4 </option>
|
| 960 |
-
</select>
|
| 961 |
-
</div>
|
| 962 |
-
|
| 963 |
-
<table class="summary display" id="summary">
|
| 964 |
-
<thead style="background-color: dodgerblue; color: white;">
|
| 965 |
-
<tr>
|
| 966 |
-
<th>Results</th>
|
| 967 |
-
<th>Datasets</th>
|
| 968 |
-
<th>System info</th>
|
| 969 |
-
<th></th>
|
| 970 |
-
</tr>
|
| 971 |
-
</thead>
|
| 972 |
-
<tbody>
|
| 973 |
-
<tr>
|
| 974 |
-
<td class="fname">
|
| 975 |
-
<a href="benchmarks_results.html">
|
| 976 |
-
|
| 977 |
-
benchmarks results
|
| 978 |
-
</a>
|
| 979 |
-
<input type="checkbox" name="checkfiles" data-result="results.parquet" data-html="benchmarks_results.html" style="display:none;">
|
| 980 |
-
</td>
|
| 981 |
-
<td class="datasets">
|
| 982 |
-
<ul style="list-style-type: none; margin-top: 0;">
|
| 983 |
-
<div class=dataset>
|
| 984 |
-
|
| 985 |
-
Div2k
|
| 986 |
-
<li><span style="font-size: 80%;padding-left:15px;padding-bottom:5px;">debug=True,img_size=256,noise=GaussianNoise,physics=Blur,sigma=0.1 </span> </li>
|
| 987 |
-
|
| 988 |
-
</div>
|
| 989 |
-
</ul>
|
| 990 |
-
|
| 991 |
-
</td>
|
| 992 |
-
|
| 993 |
-
<td class="sysinfo">
|
| 994 |
-
<ul style="list-style-type: none; margin-top: 0;">
|
| 995 |
-
<li>
|
| 996 |
-
<b>CPU</b>: 32
|
| 997 |
-
<button data-idx=0 id=btn_subinfo0 class="button buttoncent" style="float:right;">
|
| 998 |
-
<i class='fas fa-plus-circle'></i>
|
| 999 |
-
</button>
|
| 1000 |
-
|
| 1001 |
-
</li>
|
| 1002 |
-
<li>
|
| 1003 |
-
<b>RAM (GB)</b>: 63
|
| 1004 |
-
</li>
|
| 1005 |
-
<li>
|
| 1006 |
-
<b>CUDA</b>: NVIDIA GeForce RTX 4090: cuda_12.4
|
| 1007 |
-
</li>
|
| 1008 |
-
|
| 1009 |
-
<!--Case where sub infos are available but somehow main infos are not-->
|
| 1010 |
-
<div id=subinfo0 style="display:none;">
|
| 1011 |
-
<li>
|
| 1012 |
-
<b>platform</b>: Linux6.12.43+deb13-amd64-x86_64
|
| 1013 |
-
</li>
|
| 1014 |
-
<li>
|
| 1015 |
-
<b>processor</b>: AMD Ryzen Threadripper 1950X 16-Core Processor
|
| 1016 |
-
</li>
|
| 1017 |
-
</div>
|
| 1018 |
-
</ul>
|
| 1019 |
-
|
| 1020 |
-
</td>
|
| 1021 |
-
<td class="buttons" style='text-align: center'>
|
| 1022 |
-
<a href="benchmarks_results.html">
|
| 1023 |
-
<button class="btn"><i class="fas fa-chart-line"></i></button>
|
| 1024 |
-
</a>
|
| 1025 |
-
<a href="results.parquet">
|
| 1026 |
-
<button class="btn"><i class="fa fa-download"></i></button>
|
| 1027 |
-
</a>
|
| 1028 |
-
</td>
|
| 1029 |
-
</tr>
|
| 1030 |
-
</tbody>
|
| 1031 |
-
</table>
|
| 1032 |
-
<div id="dialogRm" hidden="hidden"> dialog text </div>
|
| 1033 |
-
<button class="btn" id="trashBtn" style="display:none;float:right;"><i class="fa fa-trash"></i></button>
|
| 1034 |
-
|
| 1035 |
-
<a class="backtotop" title="Back to top" href="#top" style="z-index: 50;"><i class="fas fa-level-up-alt"></i></a>
|
| 1036 |
-
|
| 1037 |
-
</div>
|
| 1038 |
-
<script type="text/javascript">
|
| 1039 |
-
/*********************************************
|
| 1040 |
-
* JS functions for the benchmark page.
|
| 1041 |
-
*********************************************/
|
| 1042 |
-
|
| 1043 |
-
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| 1044 |
-
* Format the table once the page has been loaded.
|
| 1045 |
-
* - Order the table based on run date.
|
| 1046 |
-
* - Add trash button if it is a local file
|
| 1047 |
-
* - Hide sysinfo if the column is empty
|
| 1048 |
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
| 1049 |
-
$(function () {
|
| 1050 |
-
// Sort the table by descending date order (date being in column 0)
|
| 1051 |
-
$(".summary").dataTable({
|
| 1052 |
-
order: [[0, "desc"]],
|
| 1053 |
-
}); // reorder table by date
|
| 1054 |
-
|
| 1055 |
-
//Add trash button if this is a local document
|
| 1056 |
-
if (location.hostname === "") {
|
| 1057 |
-
$("[name='checkfiles']").css({
|
| 1058 |
-
// only show lines that not hidden by user
|
| 1059 |
-
display: "block",
|
| 1060 |
-
"margin-left": "auto",
|
| 1061 |
-
float: "left",
|
| 1062 |
-
}); // display checkboxes
|
| 1063 |
-
$("#trashBtn").css({
|
| 1064 |
-
display: "block",
|
| 1065 |
-
float: "left",
|
| 1066 |
-
"margin-bottom": "5vh",
|
| 1067 |
-
});
|
| 1068 |
-
}
|
| 1069 |
-
|
| 1070 |
-
// Hide the system information column if it is empty
|
| 1071 |
-
$("table").each(function (a, tbl) {
|
| 1072 |
-
var currentTableRows = $(tbl).find("tbody tr").length;
|
| 1073 |
-
$(tbl)
|
| 1074 |
-
.find("th") // also take care of table head
|
| 1075 |
-
.each(function (i) {
|
| 1076 |
-
var remove = 0;
|
| 1077 |
-
var currentTable = $(this).parents("table");
|
| 1078 |
-
var tds = currentTable.find("tr td:nth-child(" + (i + 1) + ")");
|
| 1079 |
-
tds.each(function (j) {
|
| 1080 |
-
if ($(this)[0].innerText.length == 0) remove++;
|
| 1081 |
-
});
|
| 1082 |
-
if (remove == currentTableRows) {
|
| 1083 |
-
$(this).hide();
|
| 1084 |
-
tds.hide();
|
| 1085 |
-
}
|
| 1086 |
-
});
|
| 1087 |
-
});
|
| 1088 |
-
});
|
| 1089 |
-
|
| 1090 |
-
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| 1091 |
-
* Callback for the side bar select box.
|
| 1092 |
-
* Filter the benchmark runs in the table
|
| 1093 |
-
* based on the current selected values
|
| 1094 |
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
| 1095 |
-
function change(ll_item) {
|
| 1096 |
-
var td, i, fil;
|
| 1097 |
-
var filter = new Array();
|
| 1098 |
-
for (item = 0; item < ll_item.length; item++) {
|
| 1099 |
-
filter.push(
|
| 1100 |
-
document
|
| 1101 |
-
.getElementById("select_" + ll_item[item].replace(/\s/g, ""))
|
| 1102 |
-
.value.toUpperCase()
|
| 1103 |
-
); // Add dropdown value on top of the array (order is necessary)
|
| 1104 |
-
}
|
| 1105 |
-
var table = document.getElementById("summary");
|
| 1106 |
-
var tr = table.getElementsByTagName("tr");
|
| 1107 |
-
for (i = 0; i < tr.length; i++) {
|
| 1108 |
-
tr[i].style.display = "";
|
| 1109 |
-
td = tr[i].getElementsByTagName("td")[2];
|
| 1110 |
-
if (td) {
|
| 1111 |
-
// do not display elements from table not in filter
|
| 1112 |
-
for (fil = 0; fil < filter.length; fil++) {
|
| 1113 |
-
if (
|
| 1114 |
-
td.innerHTML.toUpperCase().indexOf(filter[fil]) > -1 &&
|
| 1115 |
-
tr[i].style.display !== "none"
|
| 1116 |
-
) {
|
| 1117 |
-
tr[i].style.display = "";
|
| 1118 |
-
} else {
|
| 1119 |
-
tr[i].style.display = "none";
|
| 1120 |
-
}
|
| 1121 |
-
}
|
| 1122 |
-
}
|
| 1123 |
-
}
|
| 1124 |
-
}
|
| 1125 |
-
|
| 1126 |
-
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| 1127 |
-
* Callback for the +/- button of system-info.
|
| 1128 |
-
* Display sub info in the table.
|
| 1129 |
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
| 1130 |
-
$(function () {
|
| 1131 |
-
$(".button.buttoncent").click(displayMore);
|
| 1132 |
-
});
|
| 1133 |
-
|
| 1134 |
-
function displayMore() {
|
| 1135 |
-
var loop_index = $(this).attr("data-idx");
|
| 1136 |
-
var x = document.getElementById("subinfo" + loop_index);
|
| 1137 |
-
$(this).find("svg").toggleClass("fa-plus-circle fa-minus-circle");
|
| 1138 |
-
if (x.style.display === "none") {
|
| 1139 |
-
x.style.display = "block";
|
| 1140 |
-
} else {
|
| 1141 |
-
x.style.display = "none";
|
| 1142 |
-
}
|
| 1143 |
-
}
|
| 1144 |
-
|
| 1145 |
-
|
| 1146 |
-
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
| 1147 |
-
* Launch a dialog box to hide rows in table or
|
| 1148 |
-
* get the files checked by user in local rendering.
|
| 1149 |
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
| 1150 |
-
$(function () {
|
| 1151 |
-
$("#dialogRm").dialog({
|
| 1152 |
-
autoOpen: false, // only open when needed
|
| 1153 |
-
});
|
| 1154 |
-
|
| 1155 |
-
// click on delete button in the dialog box
|
| 1156 |
-
$("#trashBtn").click(trashIconDialog);
|
| 1157 |
-
});
|
| 1158 |
-
|
| 1159 |
-
// copy content from trash dialog box in clipboard
|
| 1160 |
-
function clipboardCopy() {
|
| 1161 |
-
navigator.clipboard.writeText($("#dialogRm").text());
|
| 1162 |
-
}
|
| 1163 |
-
|
| 1164 |
-
// remove rows with checked checkboxes until refresh
|
| 1165 |
-
function hideRows(allChecked) {
|
| 1166 |
-
for (check of allChecked) {
|
| 1167 |
-
$(check).closest("tr").remove();
|
| 1168 |
-
}
|
| 1169 |
-
}
|
| 1170 |
-
|
| 1171 |
-
// open dialog to get paths of checked files and/or hide table rows
|
| 1172 |
-
function trashIconDialog() {
|
| 1173 |
-
// get files with checheck checkbox
|
| 1174 |
-
allChecked = document.querySelectorAll("input[name=checkfiles]:checked");
|
| 1175 |
-
delCmd = "rm \\\n <br />"; // n and br for html and copy to clipboard
|
| 1176 |
-
for (check of allChecked) {
|
| 1177 |
-
delCmd += $(check).attr("data-result") + " \\\n <br />";
|
| 1178 |
-
delCmd += $(check).attr("data-html") + " \\\n <br />";
|
| 1179 |
-
}
|
| 1180 |
-
delCmd += "cache_run_list.json"; // add the cache file
|
| 1181 |
-
$("#dialogRm").html(delCmd); // modify the content in the html file
|
| 1182 |
-
$("#dialogRm") // dialog box
|
| 1183 |
-
.dialog({
|
| 1184 |
-
title: "Remove selected entries",
|
| 1185 |
-
modal: true,
|
| 1186 |
-
draggable: true, // the user can move it
|
| 1187 |
-
resizable: false, // but not resize it
|
| 1188 |
-
width: "auto",
|
| 1189 |
-
buttons: {
|
| 1190 |
-
"Copy to clipboard": clipboardCopy,
|
| 1191 |
-
"Hide row": hideRows.bind(null, allChecked), // binder to use params
|
| 1192 |
-
},
|
| 1193 |
-
})
|
| 1194 |
-
.dialog("open"); // open dialog box on click
|
| 1195 |
-
}
|
| 1196 |
-
|
| 1197 |
-
</script>
|
| 1198 |
-
</body>
|
| 1199 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
div2k_gaussian_debluring/benchmarks_results.html
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
div2k_gaussian_debluring/cache_run_list.json
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
{"results.parquet": {"fname": "results.parquet", "fname_short": "results.parquet", "sysinfo": {"main": {"cpu": "32", "ram (GB)": "63", "cuda": "NVIDIA GeForce RTX 4090: cuda_12.4"}, "sub": {"platform": "Linux6.12.43+deb13-amd64-x86_64", "processor": "AMD Ryzen Threadripper 1950X 16-Core Processor", "nb threads": ""}, "ter": {"numpy": "2.0.1", "scipy": "1.16.2"}}, "page": "benchmarks_results.html", "datasets": ["DIV2K[debug=True,img_size=256,noise=GaussianNoise,physics=Blur,sigma=0.1]"]}}
|
|
|
|
|
|
div2k_gaussian_debluring/results.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5ab29399b40d10b59e1b819d432e297bc43f630be7a0f2e2fd69757daeecde19
|
| 3 |
-
size 23527
|
|
|
|
|
|
|
|
|
|
|
|