Skip to content

[Internship] Benchmarking remote execution #346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c6ed526
Added managed cyclical dependency example
NicolasHuertas Sep 9, 2024
f8ee4ff
Refractored folder and fixed run error
NicolasHuertas Sep 14, 2024
13f6962
Create README.md
NicolasHuertas Sep 15, 2024
4fcc28b
Program now reads through an input file
NicolasHuertas Sep 16, 2024
9f9d3df
Update README.md
NicolasHuertas Sep 16, 2024
8cd1877
Added varying input example
NicolasHuertas Oct 4, 2024
5698dd2
Merge branch 'main' of https://github.com/NicolasHuertas/example
NicolasHuertas Oct 4, 2024
33ce4db
Example using inputs from a genrule
NicolasHuertas Oct 6, 2024
b1c8d09
fixed genfile path error
NicolasHuertas Oct 6, 2024
2905e21
Added biinary input example
NicolasHuertas Oct 6, 2024
0a4819a
changed depedency structure
NicolasHuertas Oct 23, 2024
7ef5e68
reverting changes on .bazelrc
NicolasHuertas Oct 25, 2024
780abf3
Merge remote-tracking branch 'origin/main'
NicolasHuertas Dec 3, 2024
282ff15
Refractored internship folder and added benchmark script
NicolasHuertas Dec 3, 2024
1f4c666
Deleted unremoved occurrences of internship in BUILD files
NicolasHuertas Dec 3, 2024
db9f94a
Delete example.iml
NicolasHuertas Dec 3, 2024
422e14c
Deleted profile.json and fixed comment formatting
NicolasHuertas Dec 5, 2024
0cbe62a
Merge branch 'main' of https://github.com/EngFlow/example
NicolasHuertas Dec 5, 2024
a382758
Removed profile.json and fixed comment formatting
NicolasHuertas Dec 5, 2024
c7ccbf2
Merge branch 'internship' of https://github.com/EngFlow/example into …
NicolasHuertas Dec 5, 2024
0d883c5
Delete profile1.json
NicolasHuertas Dec 5, 2024
a288f24
Delete profile.json
NicolasHuertas Dec 5, 2024
3a6e55a
Added usage comments to the benchmark script
NicolasHuertas Dec 12, 2024
f286be0
Merge branch 'internship' of https://github.com/EngFlow/example into …
NicolasHuertas Dec 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update README.md
  • Loading branch information
NicolasHuertas authored Sep 16, 2024
commit 9f9d3df7271bd173fcc39bbb9d14ae2dba7cb38d
5 changes: 1 addition & 4 deletions java/com/engflow/internship/cycleexample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,9 @@ The project is organized into several packages, each representing different comp

The program takes a text input file and recursively prints each word with each class (`ClassA` prints a word, then `ClassB`, and so on) until the string is empty. The input file should be specified in the `data` attribute of the `java_binary` rule in the `BUILD` file.

Here is an example of how the `Main` class processes the input file:


## How to Run Tests

To run the tests and gather performance data, use the following Bazel command:

```sh
bazel test //java/com/engflow/internship/cycleexample/class_a:class_a_test
bazel test //java/com/engflow/internship/cycleexample/class_a:class_a_test
Loading