|
1 |
| -First, you need to set JULIA_ROOT environment to the full path to this |
2 |
| -directory. This is where j2c output file, and object file will be stored. |
| 1 | +Julia2C is a source-to-source translator from Julia to C. This initial version converts basic Julia types and expressions into corresponding C types and statements. |
3 | 2 |
|
4 |
| -To run J2C example, go to the julia/test directory, run: |
| 3 | +By translating Julia to C, we leverage the high-level abstractions (matrix, vector, ..), which are easier to analyze, and can potentially add the rich extensions of C (like openmp, tbb, ...). The tool may also extend Julia to new architectures where the only available tool chain is for C. |
5 | 4 |
|
6 |
| - ../julia j2c.jl |
| 5 | +Usage: |
| 6 | + User specifies 1 Julia function to be translated into native C. |
| 7 | + In the Julia code generation phase, J2C recursively compiles this function |
| 8 | + and all its direct and indirect callees into C. That is, the whole |
| 9 | + call graph is translated. |
| 10 | + A C compiler is invoked to translate the C code into a shared library. |
| 11 | + The original call to the user Julia function is replaced by a call to |
| 12 | + this shared library. |
7 | 13 |
|
8 |
| -It should finish without any error. Check julia/j2c directory for the |
9 |
| -intermediate files during J2C compilation. |
| 14 | +Code Structure: |
| 15 | + There are two main parts of the code: |
| 16 | + 1. Traverse the AST tree of a function. |
| 17 | + This is embedded into codegen.cpp and a few other files to minimize |
| 18 | + our coding efforts. It is better to make it a self-contained |
| 19 | + module or external package, though. |
10 | 20 |
|
| 21 | + 2. Map Julia types and AST nodes to C types and statements. |
| 22 | + This is in j2c.cpp. |
| 23 | + |
| 24 | +An example: |
| 25 | + 1. (Optional) Install bcpp, a C beautifier |
| 26 | + sudo apt-get install bcpp // this works on Ubuntu |
| 27 | + |
| 28 | + 2. Checkout the source. |
| 29 | + git clone -b j2c https://github.com/IntelLabs/julia.git j2c |
| 30 | + |
| 31 | + 3. Build |
| 32 | + cd j2c |
| 33 | + make |
| 34 | + |
| 35 | + 4. Run |
| 36 | + export JULIA_ROOT=$PWD |
| 37 | + cd test |
| 38 | + ../julia j2c.jl |
| 39 | + |
| 40 | + 5. Look at the output file |
| 41 | + vi ../j2c/out.cpp |
| 42 | + |
| 43 | + Some notes: |
| 44 | + (1) offload(sumOfThree, (Int,)) turns J2C flag on for function sumOfthree. |
| 45 | + (2) sumOfThree(1) invokes code generation for sumOfThree once, where the |
| 46 | + J2C flag is checked, and the function is J2C'ed. |
| 47 | + (3) j2c_sumOfThree calls the J2C'ed sumOfThree(). |
0 commit comments