pub trait CheckIsInputOutputAlias {
    // Provided method
    fn is_input_output_alias(&mut self, i: i32, j: i32) -> bool { ... }
}

Provided Methods§

source

fn is_input_output_alias(&mut self, i: i32, j: i32) -> bool

| Check whether output j is an alias of | input i by comparing Blob pointers, note | this does not check if the two Blobs | points to the same Tensor, or if the | Tensor pointers point to the same | TensorImpl, or if the Storages alias

Implementors§