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

Split Python interpreter in two classes #675

Merged
merged 3 commits into from
Jul 26, 2021
Merged

Conversation

Tombana
Copy link
Collaborator

@Tombana Tombana commented Jul 23, 2021

What do these changes do?

This splits the Interpreter python class in InterpreterBase (python-only) and Interpreter (including the C++ module). The base class is also used by our private interpreters, and this split avoids their dependency on the full LCE interpreter.

How Has This Been Tested?

CI covers this.

@Tombana Tombana requested a review from a team July 23, 2021 13:41
@Tombana Tombana merged commit c5d7e32 into main Jul 26, 2021
@Tombana Tombana deleted the restructure_python_interpreter branch July 26, 2021 07:51
Comment on lines +22 to -58
See the base class `InterpreterBase` for the full interface.

# Arguments
flatbuffer_model: A serialized Larq Compute Engine model in the flatbuffer format.
num_threads: The number of threads used by the interpreter.
use_reference_bconv: When True, uses the reference implementation of LceBconv2d.

# Attributes
input_types: Returns a list of input types.
input_shapes: Returns a list of input shapes.
output_types: Returns a list of output types.
output_shapes: Returns a list of output shapes.
Copy link
Member

Choose a reason for hiding this comment

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

Can we add the Attributes, here again since they appear in our docs?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Won't the docs pick it up from the base class?

Copy link
Member

Choose a reason for hiding this comment

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

Unfortunately I don't think so, it just parses the markdown.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I've moved it: #677

@lgeiger lgeiger added the internal-improvement Internal Improvements and Maintenance label Sep 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
internal-improvement Internal Improvements and Maintenance
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants