Baunsgaard commented on PR #2015:
URL: https://github.com/apache/systemds/pull/2015#issuecomment-2040138224

   ```
   X = rand(rows = 100, cols = 100, min = 0, max = 100)
   Z = rand(rows = 1000, cols = 100, min = 0, max = 100)
   
   parfor( i in 1: 4){
       for( i in 1 : 1000){
           Y = Z %*% X
       }
   
       print(sum(Y))
   }
   ```
   
   This script improve from 9.6 sec to 7.5 sec execution time (averaged over 10 
runs) on my laptop from proper reuse of the threadpool.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@systemds.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to