Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / mkl-dnn / tests / benchdnn / conv / bench_deconv.cpp
1 /*******************************************************************************
2 * Copyright 2018 Intel Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *******************************************************************************/
16
17 #include <stdlib.h>
18 #include <string.h>
19 #include <stdio.h>
20 #include <float.h>
21 #include <math.h>
22
23 #include "mkldnn.h"
24
25 #include "mkldnn_common.hpp"
26 #include "mkldnn_memory.hpp"
27
28 #include "conv/deconv.hpp"
29 using namespace conv;
30
31 namespace deconv {
32
33 /* global driver parameters */
34 const dt_conf_t *cfg = conf_f32;
35 const char *pattern = NULL;
36 dir_t dir = FWD_B;
37 int mb = 0;
38 alg_t alg = DIRECT;
39 attr_t attr;
40 const char *skip_impl = "";
41 bool allow_unimpl = false;
42 const char *perf_template = "perf,%n,%d,%GO,%GF,%-t,%-Gp,%0t,%0Gp";
43
44 void reset_parameters() {
45     cfg = conf_f32;
46     pattern = NULL;
47     dir = FWD_B;
48     mb = 0;
49     alg = DIRECT;
50     attr = attr_t();
51     skip_impl = "";
52     allow_unimpl = false;
53 }
54
55 void check_correctness(const desc_t *c) {
56     const prb_t p(*c, dir, cfg, alg, attr, mb, true);
57     char pstr[max_prb_len];
58     prb2str(&p, pstr);
59
60     if (pattern && !match_regex(pstr, pattern))
61         return;
62     print(1, "run: %s\n", pstr);
63
64     res_t res{};
65     const int status = doit(&p, &res);
66     (void)status;
67
68     bool want_perf_report = false;
69
70     parse_result(res, want_perf_report, allow_unimpl, status, pstr);
71
72     if (want_perf_report && bench_mode & PERF)
73         perf_report(&p, &res, pstr);
74
75     benchdnn_stat.tests++;
76 }
77
78 int bench(int argc, char **argv, bool main_bench) {
79     for (int arg = 0; arg < argc; ++arg) {
80         if (!strncmp("--batch=", argv[arg], 8))
81             SAFE(batch(argv[arg] + 8, bench), CRIT);
82         else if (!strncmp("--cfg=", argv[arg], 6))
83             cfg = str2cfg(argv[arg] + 6);
84         else if (!strncmp("--match=", argv[arg], 8))
85             pattern = argv[arg] + 8;
86         else if (!strncmp("--mb=", argv[arg], 5))
87             mb = atoi(argv[arg] + 5);
88         else if (!strncmp("--dir=", argv[arg], 6))
89             dir = str2dir(argv[arg] + 6);
90         else if (!strncmp("--alg=", argv[arg], 6))
91             alg = str2alg(argv[arg] + 6);
92         else if (!strncmp("--attr=", argv[arg], 7))
93             SAFE(str2attr(&attr, argv[arg] + 7), CRIT);
94         else if (!strncmp("--skip-impl=", argv[arg], 12))
95             skip_impl = argv[arg] + 12;
96         else if (!strncmp("--allow-unimpl=", argv[arg], 15))
97             allow_unimpl = str2bool(argv[arg] + 15);
98         else if (!strncmp("--perf-template=", argv[arg], 16))
99             perf_template = argv[arg] + 16;
100         else if (!strcmp("--reset", argv[arg]))
101             reset_parameters();
102         else if (!strncmp("--mode=", argv[arg], 7))
103             bench_mode = str2bench_mode(argv[arg] + 7);
104         else if (!strncmp("-v", argv[arg], 2))
105             verbose = atoi(argv[arg] + 2);
106         else if (!strncmp("--verbose=", argv[arg], 10))
107             verbose = atoi(argv[arg] + 10);
108         else {
109             desc_t c;
110             bool is_deconv = 1;
111             if (str2desc(&c, argv[arg], is_deconv) == FAIL) {
112                 fprintf(stderr, "driver: unknown option: `%s`, exiting...\n",
113                         argv[arg]);
114                 exit(2);
115             }
116             check_correctness(&c);
117         }
118     }
119     return OK;
120 }
121 }