cxx_api_test.cc 1.7 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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.

#include "paddle/fluid/lite/api/cxx_api.h"
#include <gtest/gtest.h>
S
superjomn 已提交
17
#include "paddle/fluid/lite/core/op_executor.h"
S
superjomn 已提交
18 19 20 21 22
#include "paddle/fluid/lite/core/op_registry.h"

namespace paddle {
namespace lite {

S
superjomn 已提交
23
TEST(CXXApi, raw) {
S
superjomn 已提交
24 25 26 27 28
  Scope scope;
  framework::proto::ProgramDesc prog;
  LoadModel("/home/chunwei/project2/models/model2", &scope, &prog);
  framework::ProgramDesc prog_desc(prog);

S
superjomn 已提交
29
  lite::Executor executor(&scope, {Place{TARGET(kHost), PRECISION(kFloat)}});
S
superjomn 已提交
30 31 32 33 34

  auto x = scope.Var("a")->GetMutable<Tensor>();
  x->Resize({100, 100});
  x->mutable_data<float>();

S
superjomn 已提交
35
  executor.PrepareWorkspace(prog_desc);
S
superjomn 已提交
36 37 38 39
  executor.Build(prog_desc);
  executor.Run();
}

S
superjomn 已提交
40 41 42
TEST(CXXApi, test) {
  lite::Predictor predictor;
  predictor.Build("/home/chunwei/project2/models/model2",
S
superjomn 已提交
43
                  {Place{TARGET(kHost), PRECISION(kFloat)}});
S
superjomn 已提交
44 45 46 47 48
  auto* x = predictor.GetInputTensor("a");
  x->Resize({100, 200});
  x->mutable_data<float>();
}

S
superjomn 已提交
49 50 51 52 53 54 55 56 57
}  // namespace lite
}  // namespace paddle

USE_LITE_OP(mul);
USE_LITE_OP(fc);
USE_LITE_OP(scale);
USE_LITE_KERNEL(fc, kHost, kFloat);
USE_LITE_KERNEL(mul, kHost, kFloat);
USE_LITE_KERNEL(scale, kHost, kFloat);