mirror of
https://github.com/huggingface/candle.git
synced 2025-06-19 19:58:35 +00:00
9 lines
150 B
Rust
9 lines
150 B
Rust
use crate::Tensor;
|
|
|
|
#[allow(dead_code)]
|
|
pub(crate) enum Op {
|
|
Add(Tensor, Tensor),
|
|
Mul(Tensor, Tensor),
|
|
// TODO: Support for custom ops.
|
|
}
|