Skip to content
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

Adds support for multi-options execution. #235

Merged
merged 4 commits into from
Feb 8, 2023

Conversation

cheqianh
Copy link
Contributor

@cheqianh cheqianh commented Feb 3, 2023

Description:

This PR adds support for multi-options execution - #226.

For example, user provides --api simple_ion, --api event, --format ion_text and --format ion_binary. the CLI tool will generates combinations of all these two options (--api and --format) and execute each of them.

E.g. the report should be something like

options result
--api simple_ion,--format ion_binary 15s
--api simple_ion,--format ion_text 12s
--api event,--format ion_binary 15s
--api event,--format ion_text 11s

In addition, this PR fixed few typo, modified unit test. I also left comments to highlight some changes.

Test

Unit test, 204/204 passed

Example

Command

(venv) ion-python % python amazon/ionbenchmark/ion_benchmark_cli.py write --api simple_ion --format ion_binary --format ion_text test_unit_int

Configuration Options

[('simple_ion', 'ion_text'), ('simple_ion', 'ion_binary')]

Result
Screenshot 2023-02-02 at 3 47 53 PM

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

cheqianh and others added 2 commits February 3, 2023 14:02

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Comment on lines 357 to 363
# Note. For future multi-execution options, initialize them as below and added them into option_configuration.
# initialize options that might show up multiple times
api = [*set(arguments['--api'])] if arguments['--api'] else [API.DEFAULT.value]
format_option = [*set(arguments['--format'])] if arguments['--format'] else [Format.DEFAULT.value]
# option_configuration is used for tracking multi-execution options
option_configuration = [api, format_option]
option_configuration_combination = list(itertools.product(*option_configuration))
Copy link
Contributor Author

@cheqianh cheqianh Feb 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For these options that might show up multiple times, do two things then their combination will be calculated and executed

  1. Initialize them as line 359,
  2. Add them into list option_configuration

That's it!



# Insert a benchmark result row into the benchmark report (table)
def insert_into_report_table(table, row):
Copy link
Contributor Author

@cheqianh cheqianh Feb 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We now create a report table according to the execution command first, and then insert each benchmark result row into the table after each execution.

assert file_size == getsize(file) / BYTES_TO_MB
assert result_with_gc > 0
assert write_memory_usage_peak >= 0
execution_with_command(['write', file])


def test_option_read(file=generate_test_path('integers.ion')):
Copy link
Contributor Author

@cheqianh cheqianh Feb 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quick note that for all unit tests (not only this one),

They will only make sure the execution works and don't throw any execution. However, it won't check the benchmark results. E.g., the unit test won't test if the c extension must be faster than pure python implementation or a sample file size must be X MB.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a way to at least test that the correct options combinations are executed?

Copy link
Contributor Author

@cheqianh cheqianh Feb 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new commit adds it.

I returned raw table data from the execution, store them in a sorted list and compare it to desired options.

Comment on lines +183 to +184
def read_micro_benchmark_event(iterations, warmups, c_extension, file, memory_profiling, iterator=False):
return 0, 0, 0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Refer to #236

@cheqianh cheqianh changed the title Adds support for multi-options execution. (#35) Adds support for multi-options execution. Feb 3, 2023
@cheqianh cheqianh marked this pull request as ready for review February 3, 2023 22:40
@cheqianh cheqianh requested a review from tgregg February 3, 2023 22:40
Copy link
Contributor

@tgregg tgregg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good

Comment on lines +363 to +365
# option_configuration is used for tracking options may show up multiple times.
option_configuration = [api, format_option]
option_configuration_combination = list(itertools.product(*option_configuration))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice

assert file_size == getsize(file) / BYTES_TO_MB
assert result_with_gc > 0
assert write_memory_usage_peak >= 0
execution_with_command(['write', file])


def test_option_read(file=generate_test_path('integers.ion')):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a way to at least test that the correct options combinations are executed?

@cheqianh cheqianh merged commit 91bbbdd into amazon-ion:master Feb 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants