TScaleAndShift.cpp 3.91 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* 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: Xu Chen (email: hello_master1954@163.com) 2018-06-27
*/

#include "TScaleAndShift.h"

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

/* 
case 1: scale and shift all tensor entires.
p = p * scale + shift
liyinqiao committed
29
*/
30 31
bool TestScaleAndShift1()
{
liyinqiao committed
32 33 34 35 36
    /* a input tensor of size (2, 4) */
    int sOrder = 2;
    int * sDimSize = new int[sOrder];
    sDimSize[0] = 2;
    sDimSize[1] = 4;
37

liyinqiao committed
38 39 40
    int sUnitNum = 1;
    for (int i = 0; i < sOrder; i++)
        sUnitNum *= sDimSize[i];
41

liyinqiao committed
42 43 44 45
    DTYPE sData[2][4] = { {0.0F, 1.0F, 2.0F, 3.0F},
                          {4.0F, 5.0F, 6.0F, 7.0F} };
    DTYPE answer[2][4] = { {0.5F, 2.5F, 4.5F, 6.5F},
                           {8.5F, 10.5F, 12.5F, 14.5F} };
46

liyinqiao committed
47 48
    DTYPE scaleFactor = 2.0F;
    DTYPE shiftFactor = 0.5F;
49 50 51 52 53

    /* CPU test */
    bool cpuTest = true;

    /* create tensors */
liyinqiao committed
54
    XTensor * s = NewTensor(sOrder, sDimSize);
55 56 57
    XTensor * t = NewTensor(sOrder, sDimSize);
    XTensor * tMe = NewTensor(sOrder, sDimSize);
    XTensor tUser;
58 59

    /* initialize variables */
liyinqiao committed
60
    s->SetData(sData, sUnitNum);
61
    tMe->SetData(sData, sUnitNum);
62 63

    /* call ScaleAndShift function */
64 65 66
    _ScaleAndShift(s, t, scaleFactor, shiftFactor);
    _ScaleAndShiftMe(tMe, scaleFactor, shiftFactor);
    tUser = ScaleAndShift(*s, scaleFactor, shiftFactor);
67 68

    /* check results */
69 70
    cpuTest = t->CheckData(answer, sUnitNum) && 
        tMe->CheckData(answer, sUnitNum) && tUser.CheckData(answer, sUnitNum);
71 72 73 74 75 76

#ifdef USE_CUDA
    /* GPU test */
    bool gpuTest = true;

    /* create tensors */
liyinqiao committed
77
    XTensor * sGPU = NewTensor(sOrder, sDimSize, X_FLOAT, 1.0F, 0);
78 79 80
    XTensor * tGPU = NewTensor(sOrder, sDimSize, X_FLOAT, 1.0F, 0);
    XTensor * tMeGPU = NewTensor(sOrder, sDimSize, X_FLOAT, 1.0F, 0);
    XTensor tUserGPU;
81 82

    /* initialize variables */
liyinqiao committed
83
    sGPU->SetData(sData, sUnitNum);
84
    tMeGPU->SetData(sData, sUnitNum);
85 86

    /* call ScaleAndShift function */
87 88 89
    _ScaleAndShift(sGPU, tGPU, scaleFactor, shiftFactor);
    _ScaleAndShiftMe(tMeGPU, scaleFactor, shiftFactor);
    tUserGPU = ScaleAndShift(*sGPU, scaleFactor, shiftFactor);
90 91

    /* check results */
92 93
    gpuTest = tGPU->CheckData(answer, sUnitNum) && 
        tMeGPU->CheckData(answer, sUnitNum) && tUserGPU.CheckData(answer, sUnitNum);
94 95

    /* destroy variables */
liyinqiao committed
96
    delete s;
97 98
    delete t;
    delete tMe;
liyinqiao committed
99
    delete sGPU;
100 101
    delete tGPU;
    delete tMeGPU;
liyinqiao committed
102
    delete[] sDimSize;
103 104 105 106

    return cpuTest && gpuTest;
#else
    /* destroy variables */
liyinqiao committed
107
    delete s;
108 109
    delete t;
    delete tMe;
liyinqiao committed
110
    delete[] sDimSize;
111 112 113 114 115 116 117 118 119 120 121 122 123

    return cpuTest;
#endif // USE_CUDA
}

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

/* test for ScaleAndShift Function */
bool TestScaleAndShift()
{
liyinqiao committed
124
    XPRINT(0, stdout, "[TEST ScaleAndShift] scale and shift all tensor entires\n");
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
    bool returnFlag = true, caseFlag = true;

    /* case 1 test */
    caseFlag = TestScaleAndShift1();
    if (!caseFlag) {
        returnFlag = false;
        XPRINT(0, stdout, ">> case 1 failed!\n");
    }
    else
        XPRINT(0, stdout, ">> case 1 passed!\n");

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

    if (returnFlag) {
        XPRINT(0, stdout, ">> All Passed!\n");
    }
    else
        XPRINT(0, stdout, ">> Failed!\n");

    XPRINT(0, stdout, "\n");

    return returnFlag;
    }

} // namespace nts(NiuTrans.Tensor)