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
Firstly: Really like using JBLAS, thank you! Probably because of the String Formatting methods being used.
Using the toString on FloatMatrix is very slow. It is faster to call elementsAsList and then call the toString function.
Attached a performance test. FloatMatrixToString.zip
The difference is really significant especially if you are printing in a loop.
For my tests it takes approximately 10 times longer to call toString directly as compared to converting it to a list and calling to string on it.
The text was updated successfully, but these errors were encountered:
Hm, interesting, something to look into... .
Sorry, something went wrong.
No branches or pull requests
Firstly: Really like using JBLAS, thank you!
Probably because of the String Formatting methods being used.
Using the toString on FloatMatrix is very slow.
It is faster to call elementsAsList and then call the toString function.
Attached a performance test.
FloatMatrixToString.zip
The difference is really significant especially if you are printing in a loop.
For my tests it takes approximately 10 times longer to call toString directly as compared to converting it to a list and calling to string on it.
The text was updated successfully, but these errors were encountered: