Add the continuous method.

This commit is contained in:
laurent
2023-06-23 10:45:20 +01:00
parent 4712dcc2f6
commit c4c6167949
3 changed files with 29 additions and 4 deletions

View File

@ -12,6 +12,9 @@ pub enum Error {
#[error("{op} expects at least one tensor")]
OpRequiresAtLeastOneTensor { op: &'static str },
#[error("backward is not supported for {op}")]
BackwardNotSupported { op: &'static str },
#[error("the candle crate has not been built with cuda support")]
NotCompiledWithCudaSupport,