Advertisement
Guest User

MKL tweak not active

a guest
Dec 7th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. N = 10: SVD Chol QR 1000 mult Inv Pinv
  2.  
  3. TIME IN SECONDS (SIZE: 10):
  4. SVD: 0.021088
  5. Cholesky: 0.002695
  6. QR: 0.002149
  7. 1000 matrix products: 0.002262
  8. Inverse: 0.005533
  9. Pseudo-inverse: 0.011910
  10.  
  11. N = 100: SVD Chol QR 100 mult Inv Pinv
  12.  
  13. TIME IN SECONDS (SIZE: 100):
  14. SVD: 0.001292
  15. Cholesky: 0.000214
  16. QR: 0.007542
  17. 100 matrix products: 0.004657
  18. Inverse: 0.004528
  19. Pseudo-inverse: 0.004828
  20.  
  21. N = 1000: SVD Chol QR 100 mult Inv Pinv
  22.  
  23. TIME IN SECONDS (SIZE: 1000):
  24. SVD: 0.081548
  25. Cholesky: 0.005297
  26. QR: 0.019074
  27. 100 matrix products: 2.716141
  28. Inverse: 0.042124
  29. Pseudo-inverse: 0.234134
  30.  
  31. N = 2500: SVD Chol QR 100 mult Inv Pinv
  32.  
  33. TIME IN SECONDS (SIZE: 2500):
  34. SVD: 0.897213
  35. Cholesky: 0.051892
  36. QR: 0.205365
  37. 100 matrix products: 33.602025
  38. Inverse: 0.496608
  39. Pseudo-inverse: 2.584702
  40.  
  41. N = 5000: SVD Chol QR 100 mult Inv Pinv
  42.  
  43. TIME IN SECONDS (SIZE: 5000):
  44. SVD: 12.116814
  45. Cholesky: 0.370452
  46. QR: 1.516014
  47. 100 matrix products: 237.025338
  48. Inverse: 3.714641
  49. Pseudo-inverse: 23.590270
  50.  
  51. N = 7500: SVD Chol QR 10 mult Inv Pinv
  52.  
  53. TIME IN SECONDS (SIZE: 7500):
  54. SVD: 48.864304
  55. Cholesky: 1.226992
  56. QR: 5.193004
  57. 10 matrix products: 76.229867
  58. Inverse: 12.601857
  59. Pseudo-inverse: 84.083295
  60.  
  61. N = 10000: SVD Chol QR 10 mult Inv Pinv
  62.  
  63. TIME IN SECONDS (SIZE: 10000):
  64. SVD: 123.072803
  65. Cholesky: 2.821794
  66. QR: 11.798281
  67. 10 matrix products: 174.958960
  68. Inverse: 30.402154
  69. Pseudo-inverse: 204.227361
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement