Skip to content

Commit b028618

Browse files
Add results
1 parent f45e484 commit b028618

File tree

3,885 files changed

+297676
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,885 files changed

+297676
-106
lines changed

exercises/practice/bob/.articles/performance/code/benches/10000_lorem_ipsum_non_ascii.txt

+1-1
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ultricies, eros at dictum luctus, metus lectus sollicitudin diam, porttitor feugiat neque metus ut velit. Sed congue nunc quam, ut congue sapien vestibulum sit amet. Ut dignissim purus eros, at gravida mauris interdum vitae. Vivamus molestie rutrum nisi, sed blandit dui pharetra eu. Mauris enim est, commodo in gravida a, suscipit tempor libero. Nulla vel leo non leo tincidunt maximus ac fermentum augue. Orci varius natoque penàtibûs et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse vitae pellentesque libero. Donec eu massa quis mi commodo egestas. Integer tincidunt est non luctus blandit. Praesent rutrum fringilla ligula, in ornare metus mollis at. In mollis metus arcu, sit amet egestas purus pretium vel. Donec a erat a elit gravida dignissim. Nullam rhoncus molestie sapien nec faucibus. Fusce nec posuere felis, nec hendrerit nunc. Vivamus ipsum orci, pharetra a diam ut, sagittis elementum velit orci
1+
O Lorem Ipsum é um tipo de texto de espaço reservado normalmente utilizado nas indústrias de design e publicação para preencher um espaço numa página e dar uma ideia de como será o conteúdo final. Lorem Ipsum em português é derivado de um texto latino do filósofo romano Cícero e tem sido utilizado desde a década de 1960. O texto não faz sentido e não transmite qualquer significado específico, permitindo que os designers se concentrem no layout e nos elementos visuais sem a distração do conteúdo significativo.O texto de espaço reservado é crucial para os designers visualizarem layouts sem distrações do conteúdo real. Permite o foco na estética e na estrutura, garantindo uma apresentação equilibrada. Um layout limpo aumenta a criatividade e facilita a experimentação com tipografia, cores e espaçamento. Esta prática agiliza o processo de design e ajuda as partes interessadas a visualizar o potencial do projeto.Em projetos criativos, o layout é vital para mensagens eficazes. O Lorem Ipsum

exercises/practice/bob/.articles/performance/code/benches/bob_benchmark.rs

+1-46
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const BASIC_LOREM_IPSUM_100: &str = "Lorem ipsum dolor sit amet, consectetur adi
55
const BASIC_LOREM_IPSUM_1000: &str = include_str!("./1000_lorem_ipsum.txt");
66
const BASIC_LOREM_IPSUM_10000: &str = include_str!("./10000_lorem_ipsum.txt");
77

8-
const BASIC_LOREM_IPSUM_NON_ASCII_100: &str = "Lorem ipsum dolor sit amet, consectetur adipiscing èlit. În arcu justo, facilisis vel leo et sapien";
8+
const BASIC_LOREM_IPSUM_NON_ASCII_100: &str = "O Lorem Ipsum é um tipo de texto de espaço reservado normalmente utilizado nas indústrias de design e";
99
const BASIC_LOREM_IPSUM_NON_ASCII_1000: &str = include_str!("./1000_lorem_ipsum_non_ascii.txt");
1010
const BASIC_LOREM_IPSUM_NON_ASCII_10000: &str = include_str!("./10000_lorem_ipsum_non_ascii.txt");
1111

@@ -32,11 +32,6 @@ pub fn reply_for_normal_question(c: &mut Criterion) {
3232
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
3333
b.iter(|| reply_state_machine(input))
3434
});
35-
group.bench_with_input(
36-
BenchmarkId::new("State Machine (ascii opt.)", i),
37-
&input,
38-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
39-
);
4035
}
4136
}
4237

@@ -63,11 +58,6 @@ pub fn reply_for_normal_question_non_ascii(c: &mut Criterion) {
6358
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
6459
b.iter(|| reply_state_machine(input))
6560
});
66-
group.bench_with_input(
67-
BenchmarkId::new("State Machine (ascii opt.)", i),
68-
&input,
69-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
70-
);
7161
}
7262
}
7363

@@ -93,11 +83,6 @@ pub fn reply_for_yell(c: &mut Criterion) {
9383
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
9484
b.iter(|| reply_state_machine(input))
9585
});
96-
group.bench_with_input(
97-
BenchmarkId::new("State Machine (ascii opt.)", i),
98-
&input,
99-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
100-
);
10186
}
10287
}
10388

@@ -132,11 +117,6 @@ pub fn reply_for_yell_non_ascii(c: &mut Criterion) {
132117
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
133118
b.iter(|| reply_state_machine(input))
134119
});
135-
group.bench_with_input(
136-
BenchmarkId::new("State Machine (ascii opt.)", i),
137-
&input,
138-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
139-
);
140120
}
141121
}
142122

@@ -166,11 +146,6 @@ pub fn reply_for_yell_question(c: &mut Criterion) {
166146
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
167147
b.iter(|| reply_state_machine(input))
168148
});
169-
group.bench_with_input(
170-
BenchmarkId::new("State Machine (ascii opt.)", i),
171-
&input,
172-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
173-
);
174149
}
175150
}
176151

@@ -207,11 +182,6 @@ pub fn reply_for_yell_question_non_ascii(c: &mut Criterion) {
207182
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
208183
b.iter(|| reply_state_machine(input))
209184
});
210-
group.bench_with_input(
211-
BenchmarkId::new("State Machine (ascii opt.)", i),
212-
&input,
213-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
214-
);
215185
}
216186
}
217187

@@ -238,11 +208,6 @@ pub fn reply_for_silence(c: &mut Criterion) {
238208
group.bench_with_input(BenchmarkId::new("State Machine", i.len()), &i, |b, i| {
239209
b.iter(|| reply_state_machine(i))
240210
});
241-
group.bench_with_input(
242-
BenchmarkId::new("State Machine (ascii opt)", i.len()),
243-
&i,
244-
|b, i| b.iter(|| reply_state_machine_ascii_optimized(i)),
245-
);
246211
}
247212
}
248213

@@ -268,11 +233,6 @@ pub fn reply_for_whatever(c: &mut Criterion) {
268233
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
269234
b.iter(|| reply_state_machine(input))
270235
});
271-
group.bench_with_input(
272-
BenchmarkId::new("State Machine (ascii opt.)", i),
273-
&input,
274-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
275-
);
276236
}
277237
}
278238

@@ -298,11 +258,6 @@ pub fn reply_for_whatever_non_ascii(c: &mut Criterion) {
298258
group.bench_with_input(BenchmarkId::new("State Machine", i), &input, |b, input| {
299259
b.iter(|| reply_state_machine(input))
300260
});
301-
group.bench_with_input(
302-
BenchmarkId::new("State Machine (ascii opt.)", i),
303-
&input,
304-
|b, input| b.iter(|| reply_state_machine_ascii_optimized(input)),
305-
);
306261
}
307262
}
308263

exercises/practice/bob/.articles/performance/code/benches/test.rs

+1-20
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
use bob_reply::{
2-
reply_array, reply_if_chain, reply_match, reply_state_machine,
3-
reply_state_machine_ascii_optimized,
4-
};
1+
use bob_reply::{reply_array, reply_if_chain, reply_match, reply_state_machine};
52

63
const BASIC_LOREM_IPSUM_100: &str = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. In arcu justo, facilisis vel leo et sapien";
74
const BASIC_LOREM_IPSUM_1000: &str = include_str!("./1000_lorem_ipsum.txt");
@@ -30,10 +27,6 @@ fn test_normal_question() {
3027
assert_eq!(reply_if_chain(input.as_str()), expected);
3128
assert_eq!(reply_match(input.as_str()), expected);
3229
assert_eq!(reply_state_machine(input.as_str()), expected);
33-
assert_eq!(
34-
reply_state_machine_ascii_optimized(input.as_str()),
35-
expected
36-
);
3730
}
3831
}
3932

@@ -55,10 +48,6 @@ fn test_yell() {
5548
assert_eq!(reply_if_chain(input.as_str()), expected);
5649
assert_eq!(reply_match(input.as_str()), expected);
5750
assert_eq!(reply_state_machine(input.as_str()), expected);
58-
assert_eq!(
59-
reply_state_machine_ascii_optimized(input.as_str()),
60-
expected
61-
);
6251
}
6352
}
6453

@@ -80,10 +69,6 @@ fn test_yell_question() {
8069
assert_eq!(reply_if_chain(input.as_str()), expected);
8170
assert_eq!(reply_match(input.as_str()), expected);
8271
assert_eq!(reply_state_machine(input.as_str()), expected);
83-
assert_eq!(
84-
reply_state_machine_ascii_optimized(input.as_str()),
85-
expected
86-
);
8772
}
8873
}
8974

@@ -105,9 +90,5 @@ fn test_whatever() {
10590
assert_eq!(reply_if_chain(input.as_str()), expected);
10691
assert_eq!(reply_match(input.as_str()), expected);
10792
assert_eq!(reply_state_machine(input.as_str()), expected);
108-
assert_eq!(
109-
reply_state_machine_ascii_optimized(input.as_str()),
110-
expected
111-
);
11293
}
11394
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6+
<title>Reply: &quot;Calm down, I know what I&#39;m doing!&quot; (yell question + non-ascii)/1 Summary - Criterion.rs</title>
7+
<style type="text/css">
8+
body {
9+
font: 14px Helvetica Neue;
10+
text-rendering: optimizelegibility;
11+
}
12+
13+
.body {
14+
width: 960px;
15+
margin: auto;
16+
}
17+
18+
a:link {
19+
color: #1F78B4;
20+
text-decoration: none;
21+
}
22+
23+
h2 {
24+
font-size: 36px;
25+
font-weight: 300;
26+
}
27+
28+
h3 {
29+
font-size: 24px;
30+
font-weight: 300;
31+
}
32+
33+
#footer {
34+
height: 40px;
35+
background: #888;
36+
color: white;
37+
font-size: larger;
38+
font-weight: 300;
39+
}
40+
41+
#footer a {
42+
color: white;
43+
text-decoration: underline;
44+
}
45+
46+
#footer p {
47+
text-align: center
48+
}
49+
</style>
50+
</head>
51+
52+
<body>
53+
<div class="body">
54+
<h2>Reply: &quot;Calm down, I know what I&#39;m doing!&quot; (yell question + non-ascii)/1</h2>
55+
<h3>Violin Plot</h3>
56+
<a href="violin.svg">
57+
<img src="violin.svg" alt="Violin Plot" />
58+
</a>
59+
<p>This chart shows the relationship between function/parameter and iteration time. The thickness of the shaded
60+
region indicates the probability that a measurement of the given function/parameter would take a particular
61+
length of time.</p>
62+
<section class="plots">
63+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/array/1/report/index.html">
64+
<h4>Reply: &quot;Calm down, I know what I&#39;m doing!&quot; (yell question + non-ascii)/Array/1</h4>
65+
</a>
66+
<table width="100%">
67+
<tbody>
68+
<tr>
69+
<td>
70+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/array/1/report/pdf.svg">
71+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/array/1/report/pdf_small.svg" alt="PDF of Slope" width="450"
72+
height="300" />
73+
</a>
74+
</td>
75+
<td>
76+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/array/1/report/regression.svg">
77+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/array/1/report/regression_small.svg" alt="Regression" width="450"
78+
height="300" />
79+
</a>
80+
</td>
81+
</tr>
82+
</tbody>
83+
</table>
84+
</section>
85+
<section class="plots">
86+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/if chain/1/report/index.html">
87+
<h4>Reply: &quot;Calm down, I know what I&#39;m doing!&quot; (yell question + non-ascii)/If Chain/1</h4>
88+
</a>
89+
<table width="100%">
90+
<tbody>
91+
<tr>
92+
<td>
93+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/if chain/1/report/pdf.svg">
94+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/if chain/1/report/pdf_small.svg" alt="PDF of Slope" width="450"
95+
height="300" />
96+
</a>
97+
</td>
98+
<td>
99+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/if chain/1/report/regression.svg">
100+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/if chain/1/report/regression_small.svg" alt="Regression" width="450"
101+
height="300" />
102+
</a>
103+
</td>
104+
</tr>
105+
</tbody>
106+
</table>
107+
</section>
108+
<section class="plots">
109+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/match/1/report/index.html">
110+
<h4>Reply: &quot;Calm down, I know what I&#39;m doing!&quot; (yell question + non-ascii)/Match/1</h4>
111+
</a>
112+
<table width="100%">
113+
<tbody>
114+
<tr>
115+
<td>
116+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/match/1/report/pdf.svg">
117+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/match/1/report/pdf_small.svg" alt="PDF of Slope" width="450"
118+
height="300" />
119+
</a>
120+
</td>
121+
<td>
122+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/match/1/report/regression.svg">
123+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/match/1/report/regression_small.svg" alt="Regression" width="450"
124+
height="300" />
125+
</a>
126+
</td>
127+
</tr>
128+
</tbody>
129+
</table>
130+
</section>
131+
<section class="plots">
132+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/state machine/1/report/index.html">
133+
<h4>Reply: &quot;Calm down, I know what I&#39;m doing!&quot; (yell question + non-ascii)/State Machine/1</h4>
134+
</a>
135+
<table width="100%">
136+
<tbody>
137+
<tr>
138+
<td>
139+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/state machine/1/report/pdf.svg">
140+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/state machine/1/report/pdf_small.svg" alt="PDF of Slope" width="450"
141+
height="300" />
142+
</a>
143+
</td>
144+
<td>
145+
<a href="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/state machine/1/report/regression.svg">
146+
<img src="../../../reply_ _calm down, i know what i&#39;m doing!_ (yell question + non-/state machine/1/report/regression_small.svg" alt="Regression" width="450"
147+
height="300" />
148+
</a>
149+
</td>
150+
</tr>
151+
</tbody>
152+
</table>
153+
</section>
154+
</div>
155+
<div id="footer">
156+
<p>This report was generated by
157+
<a href="https://github.com/bheisler/criterion.rs">Criterion.rs</a>, a statistics-driven benchmarking
158+
library in Rust.</p>
159+
</div>
160+
</body>
161+
162+
</html>

0 commit comments

Comments
 (0)