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? 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
Outputing the phenotype stat for a large number of patch make quantinemo incredibly slow. I suspect that this is coming from computing it too much.
This line probably loop over all patch (since we want to compute q.meanP001, q.meanP002, etc.
quantinemo/src/stathandler.cpp
Line 707 in 2fc9a2e
It is then calling this line:
quantinemo/include/ttquanti.h
Line 415 in 2fc9a2e
This line ask to recompute it for every patch. So we have two intrictate loops computing the phenotype. See this line:
quantinemo/src/ttquanti.cpp
Line 3233 in 2fc9a2e
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Outputing the phenotype stat for a large number of patch make quantinemo incredibly slow. I suspect that this is coming from computing it too much.
This line probably loop over all patch (since we want to compute q.meanP001, q.meanP002, etc.
quantinemo/src/stathandler.cpp
Line 707 in 2fc9a2e
It is then calling this line:
quantinemo/include/ttquanti.h
Line 415 in 2fc9a2e
This line ask to recompute it for every patch. So we have two intrictate loops computing the phenotype. See this line:
quantinemo/src/ttquanti.cpp
Line 3233 in 2fc9a2e
The text was updated successfully, but these errors were encountered: