Felipe Tanus <fotanus@xxxxxxxxx> writes: > My proposal will most likely follow one of the proposed idea entitled > "Improving parallelism in various commands". I'm very used to C > programming, and pthreads is my friend, so I'm the right guy for this > job. The downside is that I never looked at the git source code > before, and I expect the most challenging step from the project is to > find where parallelism can be further explored. For this, I count on > my skill in C programming, a good mentor to help me to go through the > code and evaluate my ideas. > > I find the idea of the proposal straight-forward, and no doubts pop up > in my mind, except on what commands can I work on. The idea described > in the wiki tells that the commands "git grep --cached" and "git grep > COMMIT" need this improvement, and most likely "git diff" and "git log > -p" need too. That is a good start, but if you know already other > commands that might benefit from this parallelism, please tell me in > order for me to include in my proposal. As the ideas page says the steps are (the original wording was that it would have 2.5 steps, hence "the half-step"): 0. In preparation (the half-step): identify commands that could benefit from parallelism. git grep --cached and git grep COMMIT come to mind, but most likely also git diff and git log -p. You can probably find more. 1. Rework the pack access mechanisms to allow the maximum possible parallel access. 2. Rework the commands found in the first step to use parallel pack access if possible. Along the way, document the improvements with performance tests. I think (1.) is the most important part simply because without (1.) the other two are totally meaningless. So I'd rather you not focus too hard on the command list. However, correctly identifying more commands where pack access is the hotspot, and backing that up with numbers, may be a good way to show your understanding of the matter. For further reading, you should start with the discussions surrounding git-grep threading around http://thread.gmane.org/gmane.comp.version-control.git/185932/focus=186217 http://thread.gmane.org/gmane.comp.version-control.git/186618 http://thread.gmane.org/gmane.comp.version-control.git/188701/focus=189592 etc. -- Thomas Rast trast@{inf,student}.ethz.ch -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html