25 bool geadd_check(Tensor<T> *A, Tensor<T> *B, Tensor<T> *C);
36 void geadd_full(T alpha, Tensor<T> *A, T beta, Tensor<T> *B, Tensor<T> *C);
38 #if defined(_HAS_CUDA_) 48 void geadd_full_device(T alpha, Tensor<T> *A, T beta, Tensor<T> *B, Tensor<T> *C);
61 #if defined(_HAS_CUDA_) 69 void tensor_scalar_add_full_device(T alpha, Tensor<T> *x, Tensor<T> *out);
void geadd_full(T alpha, Tensor< T > *A, T beta, Tensor< T > *B, Tensor< T > *C)
Definition: geadd_internal.cpp:28
void tensor_scalar_add_full(T alpha, Tensor< T > *x, Tensor< T > *out)
Definition: geadd_internal.cpp:51
bool geadd_check(Tensor< T > *A, Tensor< T > *B, Tensor< T > *C)
Definition: geadd_internal.cpp:15