-
Notifications
You must be signed in to change notification settings - Fork 423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: remove SplitIf.ext
cache
#5571
Conversation
!bench |
Here are the benchmark results for commit 7c29c3f. Benchmark Metric Change
===================================================
+ import Lean task-clock -7.8% (-21.8 σ)
+ import Lean wall-clock -7.8% (-23.0 σ)
+ nat_repr branches -1.8% (-1213.0 σ)
- stdlib fix level params 1.2% (38.0 σ) |
Mathlib CI status (docs):
|
Mathlib bench is insignificant as well: http://speed.lean-fro.org/mathlib4/run-detail/736f134c-465b-45d6-b096-bb5f2f5ac81c |
|
||
namespace Lean | ||
|
||
structure LazyInitExtension (m : Type → Type) (α : Type) where |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@leodemoura I removed this abstraction as it's now unused and doing lazy initialization in an elaboration monad seems like a bad idea in general under parallelism as the elaboration context will not be deterministic. Sounds good?
Mathlib CI status (docs):
|
Incompatible as is with parallelism; let's first check if it has any impact at all