Test.h 2.23 KB
Newer Older
xiaotong committed
1
/* NiuTrans.Tensor - an open-source tensor library
liyinqiao committed
2
* Copyright (C) 2017, Natural Language Processing Lab, Northeastern University.
xiaotong committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
* 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.
*/

/*
* $Created by: LI Yinqiao (li.yin.qiao.2012@hotmail.com) 2018-05-01
*/

#ifndef __TEST_H__
#define __TEST_H__

25
#include "TAbsolute.h"
26
#include "TClip.h"
liyinqiao committed
27
#include "TCompare.h"
xiaotong committed
28 29
#include "TConcatenate.h"
#include "TConcatenateSolely.h"
30
#include "TCos.h"
31
#include "TConvertDataType.h"
liyinqiao committed
32
#include "TCopyIndexed.h"
33
#include "TCopyValues.h"
34
#include "TDiv.h"
35
#include "TDivDim.h"
36
#include "TExp.h"
liyinqiao committed
37
#include "TGather.h"
38
#include "TLog.h"
xiaotong committed
39 40
#include "TMatrixMul.h"
#include "TMatrixMul2D.h"
liyinqiao committed
41 42
#include "TMatrixMul2DParallel.h"
#include "TMatrixMulBatched.h"
xiaotong committed
43
#include "TMerge.h"
44
#include "TMultiply.h"
45
#include "TMultiplyDim.h"
xiaotong committed
46 47 48 49 50 51
#include "TNegate.h"
#include "TNormalize.h"
#include "TPower.h"
#include "TReduceMax.h"
#include "TReduceMean.h"
#include "TReduceSum.h"
liyinqiao committed
52
#include "TReduceSumAll.h"
53 54
#include "TReduceSumSquared.h"
#include "TReduceVariance.h"
55
#include "TRound.h"
56 57
#include "TScaleAndShift.h"
#include "TSelect.h"
liyinqiao committed
58 59
#include "TSetAscendingOrder.h"
#include "TSetData.h"
60
#include "TSign.h"
61
#include "TSin.h"
xiaotong committed
62 63
#include "TSort.h"
#include "TSplit.h"
liyinqiao committed
64
#include "TSpread.h"
65
#include "TSub.h"
xiaotong committed
66
#include "TSum.h"
67 68 69
#include "TSumDim.h"
#include "TTan.h"
#include "TTranspose.h"
70 71
#include "TTopK.h"
#include "TUnsqueeze.h"
xiaotong committed
72 73
#include "TXMem.h"

liyinqiao committed
74 75
#include "TCrossEntropy.h"
#include "TDropout.h"
xiaotong committed
76
#include "THardTanH.h"
77
#include "TIdentity.h"
liyinqiao committed
78
#include "TLogSoftmax.h"
xiaotong committed
79 80 81 82 83 84 85 86 87 88 89 90
#include "TLoss.h"
#include "TRectify.h"
#include "TSigmoid.h"
#include "TSoftmax.h"

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

/* test for all Function */
bool Test();

} // namespace nts(NiuTrans.Tensor)
#endif // __TEST_H__