/* NiuTrans.Tensor - an open-source tensor library * Copyright (C) 2017, 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. */ /* * $Created by: LI Yinqiao (li.yin.qiao.2012@hotmail.com) 2018-05-01 */ #ifndef __TEST_H__ #define __TEST_H__ #include "TConcatenate.h" #include "TConcatenateSolely.h" #include "TMatrixMul.h" #include "TMatrixMul2D.h" #include "TMatrixMULBatchedCPU.h" #include "TMerge.h" #include "TMultiplyElementWise.h" #include "TNegate.h" #include "TNormalize.h" #include "TPower.h" #include "TReduceMax.h" #include "TReduceMean.h" #include "TReduceSum.h" #include "TSort.h" #include "TSplit.h" #include "TSum.h" #include "TXMem.h" #include "THardTanH.h" #include "TLoss.h" #include "TRectify.h" #include "TSigmoid.h" #include "TSoftmax.h" namespace nts { // namespace nts(NiuTrans.Tensor) /* test for all Function */ extern "C" bool Test(); } // namespace nts(NiuTrans.Tensor) #endif // __TEST_H__