Skip to content

Fix -Wdocumentation warning. #3715

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions runtime/backend/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ class PyTorchBackendInterface {
* memory.
* @param[in] compile_specs The exact same compiler specification that
* was used ahead-of-time to produce `processed`.
* @param[in] memory_allocator The allocator to allocate from if necessary.
*
* @returns On success, an opaque handle representing the the method
* implemented by the delegate. This handle is passed to `execute()` and
Expand Down Expand Up @@ -126,7 +125,7 @@ class BackendRegistry {
/**
* Registers the Backend object (i.e. string name and PyTorchBackendInterface
* pair) so that it could be called via the name during the runtime.
* @param[in] name Name of the user-defined backend delegate.
* @param[in] backend Backend object of the user-defined backend delegate.
* @retval Error code representing whether registration was successful.
*/
__ET_NODISCARD Error register_backend(const Backend& backend);
Expand Down
Loading