-
Notifications
You must be signed in to change notification settings - Fork 77
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
Source code contains ancient @@@@ to-do markers #162
Comments
We should examine each of these and determine whether it really is low risk. If so, it can be converted to a TODO. If not, it should be raised as an issue. This work might be an interesting tour of the MPS for training purposes, or be used to refresh the design documentation. |
Here are the markers at 8635e90 :
|
This is an attempt to place a bound on a component of the critical path in the "second-stage fix". The author here knew that this was a critical step, but couldn't think of a way to express a quantitative bound. Today I looked at the assembly output on platform LII6LL (Linux, x86_64, Clang) and this step is about two-dozen instructions, but potentially O(log number-of-chunks) because of the chunk tree. Recently, we have measured the impact of the chunk tree on our commercial client and concluded that it's not causing any measurable impact, but nonetheless there is a scalability issue here. But nonetheless, to eliminate this '@@@@' we need a way to express performance bounds on the stages of the critical path, and it's not even clear what units to use. The unit that the client cares about is an overhead on their total runtime, so ultimately this should perhaps be expressed as a fraction of total runtime for a typical client application. |
Originally posted by @rptb1 in #119 (comment)
The text was updated successfully, but these errors were encountered: