We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
現状で4重ループで一番重いここの並列化を行う
x, y, w にしか依存しない index の pix_info に読み書きをするだけなので並列化は容易に可能。
だが、ymax - ymin がある閾値以上でない (閾値は環境に拠る可能性が高い) 場合、並列化時のスレッド立てるオーバーヘッドのほうが大きくなるため、遅くなる可能性が高い。 ymax - ymin >= スレッド数 で判別するのが適切?
ymax - ymin >= スレッド数
The text was updated successfully, but these errors were encountered:
Mr-Ojii
No branches or pull requests
現状で4重ループで一番重いここの並列化を行う
x, y, w にしか依存しない index の pix_info に読み書きをするだけなので並列化は容易に可能。
だが、ymax - ymin がある閾値以上でない (閾値は環境に拠る可能性が高い) 場合、並列化時のスレッド立てるオーバーヘッドのほうが大きくなるため、遅くなる可能性が高い。
ymax - ymin >= スレッド数
で判別するのが適切?The text was updated successfully, but these errors were encountered: