test_ActivationGrad.cpp 1.9 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 22
#include "paddle/trainer/Trainer.h"

#include "LayerGradUtil.h"
Y
Yu Yang 已提交
23
#include "TestUtil.h"
24 25 26 27

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

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

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,
45
                  /* trans= */ false,
46
                  useGpu,
47
                  /* useWeight */ true);
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  }
}

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

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();
}