Skip to content

Commit 74c4c85

Browse files
committed
revise README. fix the call to bcpp error when bcpp is not installed
1 parent 0c4af12 commit 74c4c85

File tree

2 files changed

+44
-7
lines changed

2 files changed

+44
-7
lines changed

j2c/README

+43-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,47 @@
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.
32

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.
54

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.
713

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.
1020

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().

src/j2c.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2153,7 +2153,7 @@ static void j2c_dump_all_funcs()
21532153
// to Xeon Phi.
21542154
char command[1000];
21552155
sprintf(command,"bcpp temporary > %s/j2c/out.cpp 2> /dev/null", home);
2156-
if (system(command) == -1) {
2156+
if (system(command) != 0) {
21572157
JL_PRINTF(JL_STDOUT, "Beautifying output failed\n");
21582158
sprintf(command,"mv temporary %s/j2c/out.cpp", home);
21592159
system(command);

0 commit comments

Comments
 (0)