TensorBFS / TensorInference.jl

Probabilistic inference using contraction of tensor networks
https://tensorbfs.github.io/TensorInference.jl/
MIT License
18 stars 2 forks source link

Use `@debug` in favor of `@info` throughout the codebase #24

Closed mroavi closed 1 year ago

mroavi commented 1 year ago

This is to avoid the test suite from producing lengthy and tedious text by default, such as:

┌ Info: Time complexity (number of element-wise multiplications) = 2^13.618844301766655
│ Space complexity (number of elements in the largest intermediate tensor) = 2^7.0
└ Read-write complexity (number of element-wise read and write) = 2^13.827243451023598
problem = "Promedus_33"
┌ Info: Time complexity (number of element-wise multiplications) = 2^12.06406908038551
│ Space complexity (number of elements in the largest intermediate tensor) = 2^4.0
└ Read-write complexity (number of element-wise read and write) = 2^12.945626722229823
problem = "Promedus_34"
┌ Info: Time complexity (number of element-wise multiplications) = 2^18.896698991859143
│ Space complexity (number of elements in the largest intermediate tensor) = 2^13.0
└ Read-write complexity (number of element-wise read and write) = 2^16.625280764813695
problem = "Promedus_35"
┌ Info: Time complexity (number of element-wise multiplications) = 2^15.53107680524311
│ Space complexity (number of elements in the largest intermediate tensor) = 2^9.0
└ Read-write complexity (number of element-wise read and write) = 2^14.741624983193342
problem = "Promedus_36"
┌ Info: Time complexity (number of element-wise multiplications) = 2^15.53107680524311
│ Space complexity (number of elements in the largest intermediate tensor) = 2^9.0
└ Read-write complexity (number of element-wise read and write) = 2^14.741624983193342
problem = "Promedus_37"
┌ Info: Time complexity (number of element-wise multiplications) = 2^22.40472528424125
│ Space complexity (number of elements in the largest intermediate tensor) = 2^17.0
└ Read-write complexity (number of element-wise read and write) = 2^20.197198691951638
problem = "Promedus_38"
^[┌ Info: Time complexity (number of element-wise multiplications) = 2^21.812478953355335
│ Space complexity (number of elements in the largest intermediate tensor) = 2^16.0
└ Read-write complexity (number of element-wise read and write) = 2^19.810490049074023
problem = "Segmentation_11"
┌ Info: Time complexity (number of element-wise multiplications) = 2^19.85114663390951
│ Space complexity (number of elements in the largest intermediate tensor) = 2^13.0
└ Read-write complexity (number of element-wise read and write) = 2^18.553917978017388
problem = "Segmentation_12"
┌ Info: Time complexity (number of element-wise multiplications) = 2^23.54608360701438
│ Space complexity (number of elements in the largest intermediate tensor) = 2^18.0
└ Read-write complexity (number of element-wise read and write) = 2^21.092477788851912
GiggleLiu commented 1 year ago

Close as complete.