TMultiply.cpp 4.78 KB
Newer Older
xiaotong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* 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: Lin Ye (email: linye2015@outlook.com) 2018-06-15
*/

liyinqiao committed
22
#include "../core/utilities/CheckData.h"
23
#include "TMultiply.h"
xiaotong committed
24 25

namespace nts { // namespace nts(NiuTrans.Tensor)
liyinqiao committed
26 27 28 29 30

/* 
case 1: element-wise product of two tensors
c(i) = a(i)*b(i) + \alpha * c(i)
In this case, (2, 2)  (2, 2) -> (2, 2), leadingDim=0, alpha=0.
xiaotong committed
31
*/
32
bool TestMultiply1()
xiaotong committed
33
{
liyinqiao committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    /* a source tensor of size (2, 2) */
    int sOrder1 = 2;
    int * sDimSize1 = new int[sOrder1];
    sDimSize1[0] = 2;
    sDimSize1[1] = 2;

    int sUnitNum1 = 1;
    for (int i = 0; i < sOrder1; i++)
        sUnitNum1 *= sDimSize1[i];

    /* a source tensor of size (2, 2) */
    int sOrder2 = 2;
    int * sDimSize2 = new int[sOrder2];
    sDimSize2[0] = 2;
    sDimSize2[1] = 2;

    int sUnitNum2 = 1;
    for (int i = 0; i < sOrder2; i++)
        sUnitNum2 *= sDimSize2[i];

    /* a target tensor of size (2, 2) */
    int tOrder = 2;
    int * tDimSize = new int[tOrder];
    tDimSize[0] = 2;
    tDimSize[1] = 2;

    int tUnitNum = 1;
    for (int i = 0; i < tOrder; i++)
        tUnitNum *= tDimSize[i];

    DTYPE sData1[2][2] = { {0.0F, 1.0F},
                           {2.0F, 3.0F} };
    DTYPE sData2[2][2] = { {0.0F, 1.0F},
                           {2.0F, 3.0F} };
    DTYPE answer[2][2] = { {0.0F, 1.0F},
                           {4.0F, 9.0F} };

    /* CPU test */
    bool cpuTest = true;

    /* create tensors */
75 76 77 78
    XTensor * s1 = NewTensorV2(sOrder1, sDimSize1);
    XTensor * s2 = NewTensorV2(sOrder2, sDimSize2);
    XTensor * t = NewTensorV2(tOrder, tDimSize);
    XTensor * tMe = NewTensorV2(tOrder, tDimSize);
79
    XTensor tUser;
xiaotong committed
80

liyinqiao committed
81 82 83 84 85
    /* initialize variables */
    s1->SetData(sData1, sUnitNum1);
    tMe->SetData(sData1, sUnitNum1);
    s2->SetData(sData2, sUnitNum2);
    t->SetZeroAll();
xiaotong committed
86

liyinqiao committed
87 88 89
    /* call Multiply function */
    _Multiply(s1, s2, t, 0, 0);
    _MultiplyMe(tMe, s2, 0, 0);
90
    tUser = Multiply(*s1, *s2, 0);
xiaotong committed
91

liyinqiao committed
92
    /* check results */
liyinqiao committed
93 94 95
    cpuTest = _CheckData(t, answer, tUnitNum) &&
              _CheckData(tMe, answer, tUnitNum) &&
              _CheckData(&tUser, answer, tUnitNum);
xiaotong committed
96 97

#ifdef USE_CUDA
liyinqiao committed
98 99
    /* GPU test */
    bool gpuTest = true;
xiaotong committed
100

liyinqiao committed
101
    /* create tensor */
102 103 104 105
    XTensor * sGPU1 = NewTensorV2(sOrder1, sDimSize1, X_FLOAT, 1.0F, 0);
    XTensor * sGPU2 = NewTensorV2(sOrder2, sDimSize2, X_FLOAT, 1.0F, 0);
    XTensor * tGPU = NewTensorV2(tOrder, tDimSize, X_FLOAT, 1.0F, 0);
    XTensor * tMeGPU = NewTensorV2(tOrder, tDimSize, X_FLOAT, 1.0F, 0);
106
    XTensor tUserGPU;
xiaotong committed
107

liyinqiao committed
108 109 110 111 112
    /* Initialize variables */
    sGPU1->SetData(sData1, sUnitNum1);
    tMeGPU->SetData(sData1, sUnitNum1);
    sGPU2->SetData(sData2, sUnitNum2);
    tGPU->SetZeroAll();
xiaotong committed
113

liyinqiao committed
114 115 116
    /* call Multiply function */
    _Multiply(sGPU1, sGPU2, tGPU, 0, 0);
    _MultiplyMe(tMeGPU, sGPU2, 0, 0);
117
    tUserGPU = Multiply(*sGPU1, *sGPU2, 0);
xiaotong committed
118

liyinqiao committed
119
    /* check results */
liyinqiao committed
120 121 122
    gpuTest = _CheckData(tGPU, answer, tUnitNum) &&
              _CheckData(tMeGPU, answer, tUnitNum) &&
              _CheckData(&tUserGPU, answer, tUnitNum);
xiaotong committed
123

liyinqiao committed
124
    /* destroy variables */
liyinqiao committed
125 126 127
    delete s1;
    delete s2;
    delete t;
128
    delete tMe;
liyinqiao committed
129 130 131
    delete sGPU1;
    delete sGPU2;
    delete tGPU;
132
    delete tMeGPU;
liyinqiao committed
133 134 135
    delete[] sDimSize1;
    delete[] sDimSize2;
    delete[] tDimSize;
xiaotong committed
136

liyinqiao committed
137
    return cpuTest && gpuTest;
xiaotong committed
138
#else
liyinqiao committed
139 140 141 142
    /* destroy variables */
    delete s1;
    delete s2;
    delete t;
143
    delete tMe;
liyinqiao committed
144 145 146
    delete[] sDimSize1;
    delete[] sDimSize2;
    delete[] tDimSize;
xiaotong committed
147

liyinqiao committed
148
    return cpuTest;
xiaotong committed
149 150 151 152 153 154 155 156
#endif // USE_CUDA
}

/* other cases */
/*
TODO!!
*/

157
/* test for Multiply Function */
158
bool TestMultiply()
xiaotong committed
159
{
liyinqiao committed
160 161
    XPRINT(0, stdout, "[TEST Multiply] element-wise product of two tensors \n");
    bool returnFlag = true, caseFlag = true;
xiaotong committed
162

liyinqiao committed
163 164
    /* case 1 test */
    caseFlag = TestMultiply1();
xiaotong committed
165

liyinqiao committed
166 167 168 169 170 171
    if (!caseFlag) {
        returnFlag = false;
        XPRINT(0, stdout, ">> case 1 failed!\n");
    }
    else
        XPRINT(0, stdout, ">> case 1 passed!\n");
xiaotong committed
172

liyinqiao committed
173 174 175 176
    /* other cases test */
    /*
    TODO!!
    */
xiaotong committed
177

liyinqiao committed
178 179 180 181 182
    if (returnFlag) {
        XPRINT(0, stdout, ">> All Passed!\n");
    }
    else
        XPRINT(0, stdout, ">> Failed!\n");
xiaotong committed
183

liyinqiao committed
184
    XPRINT(0, stdout, "\n");
xiaotong committed
185

liyinqiao committed
186
    return returnFlag;
xiaotong committed
187 188 189
}

} // namespace nts(NiuTrans.Tensor)