feat(python): get path to diff artifacts

- path to client parameters file
- path to shared library
This commit is contained in:
youben11
2022-04-29 15:09:33 +01:00
committed by Ayoub Benaissa
parent 211241fcb2
commit 5f1a539505
7 changed files with 79 additions and 4 deletions

View File

@@ -103,6 +103,16 @@ library_server_call(LibrarySupport_C support,
return std::move(*publicResult);
}
MLIR_CAPI_EXPORTED std::string
library_get_shared_lib_path(LibrarySupport_C support) {
return support.support.getSharedLibPath();
}
MLIR_CAPI_EXPORTED std::string
library_get_client_parameters_path(LibrarySupport_C support) {
return support.support.getClientParametersPath();
}
// Client Support bindings ///////////////////////////////////////////////////
MLIR_CAPI_EXPORTED std::unique_ptr<concretelang::clientlib::KeySet>