diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-02 05:42:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 05:42:11 +0100 |
commit | 4b3bd79fbd7ea562fef8f747f2dec224afad26da (patch) | |
tree | 57db1ca57be638518355918e224c69ae3b455a55 /candle-core/src/backend.rs | |
parent | cc76c63202ab936c08f6a6b9dcc2756c6a227f63 (diff) | |
download | candle-4b3bd79fbd7ea562fef8f747f2dec224afad26da.tar.gz candle-4b3bd79fbd7ea562fef8f747f2dec224afad26da.tar.bz2 candle-4b3bd79fbd7ea562fef8f747f2dec224afad26da.zip |
Remove the embedding ops in favor of index-select. (#299)
* Remove the embedding ops in favor of index-select.
* Also remove the cuda kernels.
Diffstat (limited to 'candle-core/src/backend.rs')
-rw-r--r-- | candle-core/src/backend.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/candle-core/src/backend.rs b/candle-core/src/backend.rs index cee1cad0..345db0e5 100644 --- a/candle-core/src/backend.rs +++ b/candle-core/src/backend.rs @@ -37,7 +37,6 @@ pub trait BackendStorage: Sized { _params: &crate::conv::ParamsConv1D, ) -> Result<Self>; - fn embedding(&self, _: &Layout, _: &Self, _: &Layout) -> Result<Self>; fn gather(&self, _: &Layout, _: &Self, _: &Layout, _: usize) -> Result<Self>; fn scatter_add( &self, |