-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# circle-interpreter-cffi-test | ||
|
||
The `circle_interpereter_cffi` library wrapped with CFFI is designed to expose an existing `luci-interpreter` class to Python. It simplifies the integration of the class by creating a Python-compatible interface using CFFI. | ||
<br>The `circle_interpereter_cffi` library wrapped with CFFI is designed to expose | ||
an existing `luci-interpreter` class to Python. It simplifies the integration of | ||
the class by creating a Python-compatible interface using CFFI.</br> | ||
|
||
`circle-interpreter-cffi-test` ensures that the Python bindings for the C++ library correctly. Specifically, it verifies that: | ||
<br>`circle-interpreter-cffi-test` ensures that the Python bindings for the C++ | ||
library correctly. Specifically, it verifies that:</br> | ||
|
||
1. The CFFI-wrapped library can succesfully load the circle model. | ||
2. Inputs passed from Python are correctly interpreted by the `luci-interpreter`. | ||
3. The output generated by the interpreter matches the expected results. | ||
|
||
This test provides confidence that `luci-interpter`, when accessed through the Python interface, produces the same results as the original implementation. | ||
<br>This test provides confidence that `luci-interpter`, when accessed through | ||
the Python interface, produces the same results as the original implementation.</br> |