Skip to content

Commit 971bf49

Browse files
committed
test
1 parent c0915f9 commit 971bf49

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

backends/cuda/runtime/CudaBackend.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#pragma once
44

5-
#include <executorch/backends/aoti/aoti_delegate_handle.h>
65
#include <executorch/backends/cuda/runtime/export.h>
76
#include <executorch/runtime/backend/interface.h>
87
#include <executorch/runtime/core/error.h>
@@ -12,14 +11,6 @@ namespace executorch::backends::cuda {
1211

1312
class AOTI_CUDA_EXPORT ET_EXPERIMENTAL CudaBackend final
1413
: public ::executorch::runtime::BackendInterface {
15-
private:
16-
/**
17-
* Load AOTI function pointers from the shared library into the handle.
18-
*/
19-
::executorch::runtime::Error load_function_pointers_into_handle(
20-
void* so_handle,
21-
struct AOTIDelegateHandle* handle) const;
22-
2314
public:
2415
/**
2516
* Check if the CUDA backend is available.

backends/cuda/runtime/cuda_backend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ using executorch::runtime::Result;
4848
using executorch::runtime::Span;
4949
using executorch::runtime::etensor::Tensor;
5050

51-
Error CudaBackend::load_function_pointers_into_handle(
51+
Error load_function_pointers_into_handle(
5252
void* so_handle,
5353
AOTIDelegateHandle* handle) const {
5454
#define LOAD_SYMBOL(member, name) \

0 commit comments

Comments
 (0)