mirror of
https://github.com/huggingface/candle.git
synced 2025-06-17 11:08:52 +00:00
Add the elu op. (#113)
This commit is contained in:
@ -127,6 +127,9 @@ pub enum Error {
|
||||
#[error("unsupported safetensor dtype {0:?}")]
|
||||
UnsupportedSafeTensorDtype(safetensors::Dtype),
|
||||
|
||||
#[error("unsupported dtype {0:?} for op {1}")]
|
||||
UnsupportedDTypeForOp(DType, &'static str),
|
||||
|
||||
#[error("cannot broadcast {src_shape:?} to {dst_shape:?}")]
|
||||
BroadcastIncompatibleShapes { src_shape: Shape, dst_shape: Shape },
|
||||
|
||||
|
Reference in New Issue
Block a user