-
Notifications
You must be signed in to change notification settings - Fork 36
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
Conversation
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. |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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
What do these changes do?
This splits the
Interpreter
python class inInterpreterBase
(python-only) andInterpreter
(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.