“73632deea0fcf827a8400692d1328f97d2c52fe8”上不存在“git@gitcode.net:RobotFutures/Paddle.git”
target_wrapper.cc 1.1 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2019 PaddlePaddle Authors. 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.

S
superjomn 已提交
15
#include "paddle/fluid/lite/core/target_wrapper.h"
S
superjomn 已提交
16
#include <algorithm>
S
superjomn 已提交
17
#include "paddle/fluid/lite/utils/all.h"
S
superjomn 已提交
18 19 20 21 22

namespace paddle {
namespace lite {

template <>
S
superjomn 已提交
23 24 25 26
void TargetWrapper<TARGET(kX86)>::MemcpySync(void *dst, void *src, size_t size,
                                             IoDirection dir) {
  std::copy_n(reinterpret_cast<uint8_t *>(src), size,
              reinterpret_cast<uint8_t *>(dst));
S
superjomn 已提交
27 28
}

S
superjomn 已提交
29
template class TargetWrapper<TARGET(kX86)>;
S
superjomn 已提交
30 31 32

}  // namespace lite
}  // namespace paddle