Skip to content
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

枝を形成するところgoroutine化できないか #263

Open
ddddddO opened this issue Dec 2, 2023 · 1 comment
Open

枝を形成するところgoroutine化できないか #263

ddddddO opened this issue Dec 2, 2023 · 1 comment

Comments

@ddddddO
Copy link
Owner

ddddddO commented Dec 2, 2023

以下でgoroutineを使えれば、かなり早くなるのではないかと推測
推測なので計測しないとかもだけど、手間なら実施前後で速度に差が出るか確認するでいい

if err := dg.assembleBranch(current); err != nil {
return err
}

この処理時点では既に木としての構造はできてるはずで、currentの処理は、他のnodeへの副作用はなさそうだし、他のnodeのこの処理が終わってないとできない、ということも無さそうなので、goroutine化は可能そうに思う

実際にやるならgoroutineのlimitは設ける
race conditionは起こりうるかな

@ddddddO
Copy link
Owner Author

ddddddO commented Dec 2, 2023

あーでも、↑が遅さの原因ではなさそう

func (dgs *defaultGrowSpreaderSimple) growAndSpread(w io.Writer, roots []*Node) error {

が使われるはずなので、木を作るとこが時間かかってるみたい
難しい

たぶん、Addメソッド内のfindで時間かかってる
mapは順序保証されてないから、findだけmap使って、出力はslice使う、という感じがいいかも
でもどうかなぁ

@ddddddO ddddddO changed the title 木を組み立てるところgoroutine化できないか 枝を形成するところgoroutine化できないか Dec 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant