| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | Contents========* Installing Julia* Installing StarPU module for Julia* Running ExamplesInstalling Julia----------------Julia version 1.3+ is required and can be downloaded fromhttps://julialang.org/downloads/.Installing StarPU module for Julia----------------------------------First, build the jlstarpu_c_wrapper library:$ makeThen, you need to add the lib/ directory to your library path and the julia/directory to your Julia load path:$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib$ export JULIA_LOAD_PATH=$JULIA_LOAD_PATH:$PWDThis step can also be done by sourcing the setenv.sh script:$ . setenv.shRunning Examples----------------You can find several examples in the examples/ directory.For each example X, three versions are provided:- X.c: Original C+starpu code- X_native.jl: Native Julia version (without StarPU)- X.jl: Julia version using StarPUTo run the original C+StarPU code:$ make cstarpu.datTo run the native Julia version:$ make julia_native.datTo run the Julia version using StarPU:$ make julia_generatedc.dat
 |