summaryrefslogtreecommitdiff
path: root/compiler/locomotiv/src/Node/Pull.test.cpp
blob: 53e78776b527a18e7729a0bb90700b6fcb60454c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
/*
 * Copyright (c) 2019 Samsung Electronics Co., Ltd. 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.
 */

#include "NodeExecution.h"

#include "locomotiv/NodeData.h"
#include "UserData.h"
#include "NodeDataImpl.h"
#include "NodeDomain.h"

#include <nncc/core/ADT/tensor/Shape.h>
#include <nncc/core/ADT/tensor/Buffer.h>
#include <nncc/core/ADT/tensor/LexicalLayout.h>

#include <gtest/gtest.h>

using nncc::core::ADT::tensor::Shape;
using nncc::core::ADT::tensor::LexicalLayout;
using nncc::core::ADT::tensor::make_buffer;

TEST(NodeExecution_Pull, check_data_ready)
{
  // Make graph with Pull node only
  auto g = loco::make_graph();
  auto pull = g->nodes()->create<loco::Pull>();

  // Data not ready yet
  ASSERT_ANY_THROW(locomotiv::NodeExecution::get().run(pull));

  // Make and assign data to pull node
  auto pull_buf = make_buffer<float, LexicalLayout>(Shape{1});
  auto pull_data = locomotiv::make_data(pull_buf);
  locomotiv::user_data(pull, std::move(pull_data));

// The behavior of Pull is now consistent with that of other nodes.
// -  annot_data and annot_domain is available after evaluating that "pull" node.
// TODO Remove this
#if 0
  // Domain not ready yet
  ASSERT_ANY_THROW(locomotiv::NodeExecution::get().run(pull));

  // Set Domain
  locomotiv::annot_domain(pull, loco::Domain::Tensor);
#endif

  // Valid run
  ASSERT_NO_THROW(locomotiv::NodeExecution::get().run(pull));
}