summaryrefslogtreecommitdiff
path: root/compute/ARMComputeEx/src/runtime/NEON/functions/NEEmbeddingLookup.cpp
blob: 00c3ed94f5f6b2b2d7459a76d9d6b8a0763a1c57 (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
/*
 * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
 * Copyright (c) 2016-2018 ARM Limited.
 *
 * 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 "arm_compute/runtime/NEON/functions/NEEmbeddingLookup.h"

#include "arm_compute/core/NEON/kernels/NEEmbeddingLookupKernel.h"
#include "support/ToolchainSupport.h"

using namespace arm_compute;

void NEEmbeddingLookup::configure(const ITensor *input, ITensor *output, const ITensor *lookups)
{
  auto k = arm_compute::support::cpp14::make_unique<NEEmbeddingLookupKernel>();
  k->configure(input, output, lookups);
  _kernel = std::move(k);
}