test_ActivationGrad.cpp 2.8 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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. */

#include <gtest/gtest.h>
#include <string>
Y
Yu Yang 已提交
17
#include <vector>
18
#include "ModelConfig.pb.h"
Y
Yu Yang 已提交
19
#include "paddle/gserver/layers/DataLayer.h"
20 21

#include "LayerGradUtil.h"
22
#include "paddle/testing/TestUtil.h"
23 24 25 26

using namespace paddle;  // NOLINT
using namespace std;     // NOLINT

27 28
DECLARE_bool(use_gpu);
DECLARE_bool(thread_local_rand_use_global_seed);
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

void testActivation(const string& act) {
  LOG(INFO) << "test activation: " << act;
  size_t size = 10;
  TestConfig config;
  config.biasSize = 0;
  config.layerConfig.set_type("addto");
  config.layerConfig.set_size(size);
  config.layerConfig.set_active_type(act);
  config.inputDefs.push_back({INPUT_DATA, "layer_0", size, 0});
  config.layerConfig.add_inputs();
  for (auto useGpu : {false, true}) {
    testLayerGrad(config,
                  act + "_activation",
                  100,
44
                  /* trans= */ false,
45
                  useGpu,
46
                  /* useWeight */ true);
47 48 49 50 51 52 53 54 55 56 57 58
  }
}

TEST(Activation, activation) {
  auto types = ActivationFunction::getAllRegisteredTypes();
  std::set<string> excluded{"sequence_softmax"};
  for (auto type : types) {
    if (excluded.count(type)) continue;
    testActivation(type);
  }
}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
void testSequenceSoftmaxAct(bool hasSubseq) {
  LOG(INFO) << "test activation: sequence softmax";

  const size_t size = 1;
  TestConfig config;
  config.biasSize = 0;
  config.layerConfig.set_type("addto");
  config.layerConfig.set_size(size);
  config.layerConfig.set_active_type("sequence_softmax");
  config.inputDefs.push_back(
      {hasSubseq ? INPUT_HASSUB_SEQUENCE_DATA : INPUT_SEQUENCE_DATA,
       "layer_0",
       1,
       0});
  config.layerConfig.add_inputs();

  for (auto useGpu : {false, true}) {
    testLayerGrad(config,
                  "sequence_softmax",
                  100,
                  /* trans= */ false,
                  useGpu,
                  /* useWeight */ true);
  }
}

TEST(SequenceSoftmaxActivation, activation) {
  for (auto hasSubseq : {false, true}) {
    LOG(INFO) << "hasSubseq = " << hasSubseq;
    testSequenceSoftmaxAct(hasSubseq);
  }
}

92 93 94 95 96 97 98
int main(int argc, char** argv) {
  testing::InitGoogleTest(&argc, argv);
  initMain(argc, argv);
  FLAGS_thread_local_rand_use_global_seed = true;
  srand(1);
  return RUN_ALL_TESTS();
}