Skip to content

Commit 883c1ed

Browse files
committed
set up nalgebra benchmark
clean build times - cargo check: 10.2s - cargo build: 10.9s - cargo build --release: 13.6s leaf crate build times: - check full: 4.9s - debug full: 5.4s - opt full: 7.6s
1 parent 10d21ae commit 883c1ed

File tree

5 files changed

+1556
-1
lines changed

5 files changed

+1556
-1
lines changed

collector/compile-benchmarks/nalgebra-0.33.0/.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ doc
44
lib
55
TODO
66
target/
7-
Cargo.lock
87
*.orig
98
*.swo
109
site/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/src/base/matrix.rs b/src/base/matrix.rs
2+
index 6f358a84..6c4eb739 100644
3+
--- a/src/base/matrix.rs
4+
+++ b/src/base/matrix.rs
5+
@@ -225,6 +225,7 @@ where
6+
S: Default,
7+
{
8+
fn default() -> Self {
9+
+ println!("testing");
10+
Matrix {
11+
data: Default::default(),
12+
_phantoms: PhantomData,

0 commit comments

Comments
 (0)