op_test.cc 1.38 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */

tqchen committed
20 21
#include <dmlc/logging.h>
#include <gtest/gtest.h>
22
#include <nnvm/op.h>
tqchen committed
23 24
#include <utility>

25
NNVM_REGISTER_OP(add)
tqchen committed
26 27
.describe("add two data together")
.set_num_inputs(2)
Tianqi Chen committed
28
.set_attr("inplace_pair", std::make_pair(0, 0));
tqchen committed
29

30
NNVM_REGISTER_OP(add)
Tianqi Chen committed
31
.set_attr<std::string>("nick_name", "plus");
tqchen committed
32 33 34


TEST(Op, GetAttr) {
35
  using namespace nnvm;
tqchen committed
36 37 38 39 40
  auto add = Op::Get("add");
  auto nick = Op::GetAttr<std::string>("nick_name");

  CHECK_EQ(nick[add], "plus");
}
41 42 43 44 45 46

int main(int argc, char ** argv) {
  testing::InitGoogleTest(&argc, argv);
  testing::FLAGS_gtest_death_test_style = "threadsafe";
  return RUN_ALL_TESTS();
}