@@ -6,19 +6,19 @@ The goal of this example project is to test the performance of Engflow's remote
66
77## Project Structure
88
9- - ` java/com/engflow/internship/ binaryinput/Main.java ` : Main class that dynamically loads and invokes methods from generated classes.
10- - ` java/com/engflow/internship/ binaryinput/BUILD ` : Bazel build file for the ` main ` java binary and the ` genbinary ` library.
9+ - ` java/com/engflow/binaryinput/Main.java ` : Main class that dynamically loads and invokes methods from generated classes.
10+ - ` java/com/engflow/binaryinput/BUILD ` : Bazel build file for the ` main ` java binary and the ` genbinary ` library.
1111
1212## Usage
1313
1414To generate the test files, build the ` genbinary ` library using the ` genrule ` :
1515``` sh
16- bazel build //java/com/engflow/internship/ binaryinput:genbinary
16+ bazel build //java/com/engflow/binaryinput:genbinary
1717```
1818
1919Then, the program can be run with the following command:
2020``` sh
21- bazel run //java/com/engflow/internship/ binaryinput:main
21+ bazel run //java/com/engflow/binaryinput:main
2222```
2323
2424## How It Works
@@ -39,14 +39,14 @@ The number of generated files is controlled by the `NUM_FILES` variable in the `
3939
4040To generate and run the program with 10 input binary files:
4141
42- 1 . Set ` NUM_FILES ` to 10 in ` java/com/engflow/internship/ binaryinput/BUILD ` .
42+ 1 . Set ` NUM_FILES ` to 10 in ` java/com/engflow/binaryinput/BUILD ` .
43432 . Build the ` genbinary ` library:
4444 ``` sh
45- bazel build //java/com/engflow/internship/ binaryinput:genbinary
45+ bazel build //java/com/engflow/binaryinput:genbinary
4646 ```
47473 . Run the ` main ` binary:
4848 ``` sh
49- bazel run //java/com/engflow/internship/ binaryinput:main
49+ bazel run //java/com/engflow/binaryinput:main
5050 ```
5151
5252This will generate 10 Java classes, build the ` genbinary ` library, and run the ` main ` binary, which will print messages from each generated class.
0 commit comments