SumDim.cuh 1.32 KB
Newer Older
xiaotong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* NiuTrans.Tensor - an open-source tensor library
* Copyright (C) 2018, Natural Language Processing Lab, Northestern University.
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

/*
19
* $Created by: XIAO Tong (email: xiaotong@mail.neu.edu.cn) 2018-07-29
20 21
* &Updated by: XIAO Tong (email: xiaotong@mail.neu.edu.cn) 2018-12-26
* Add summation by broadcasting.
xiaotong committed
22 23
*/

24 25
#ifndef __SUMDIM_CUH__
#define __SUMDIM_CUH__
xiaotong committed
26 27 28 29 30

#include "../../XTensor.h"

namespace nts { // namespace nts(NiuTrans.Tensor)

xiaotong committed
31 32
#ifdef USE_CUDA

33 34 35
/* tensor summation c = a + b * \beta where the size of b is equal to the n-th dimension of a, 
   i.e., a is summed with b by broadcasting (cuda version) */
void _CudaSumDim(const XTensor * a, const XTensor * b, XTensor * c, int n, DTYPE beta = (DTYPE)1.0);
xiaotong committed
36

xiaotong committed
37 38
#endif

xiaotong committed
39 40
} // namespace nts(NiuTrans.Tensor)

41
#endif // __SUMDIM_CUH__