Skip to content

Simplicial closure and higher-order link prediction.

License

Notifications You must be signed in to change notification settings

arbenson/ScHoLP.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ScHoLP

Simplicial closure and Higher-order Link Prediction

For information on using this library, refer to the tutorial repository here.

Note on multi-threading

This library supports multithreading through Julia's Base.Threads. However, in some cases, it can conflict with the multithreading in BLAS routines. Essentially, these are cases where an iterative solver is used to solve a large number of linear systems and there is simple parallelism over the linear systems being solved. To avoid the conflicts with BLAS threading, here is an example of how one should start Julia.

export OPENBLAS_NUM_THREADS=1
export GOTO_NUM_THREADS=1
export OMP_NUM_THREADS=1
JULIA_NUM_THREADS=64 julia