Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / mkl-dnn / tests / benchdnn / conv / bench_conv.cpp
1 /*******************************************************************************
2 * Copyright 2017-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/conv.hpp"
29
30 namespace conv {
31
32 /* global driver parameters */
33 const dt_conf_t *cfg = conf_f32;
34 const char *pattern = NULL;
35 dir_t dir = FWD_B;
36 int mb = 0;
37 alg_t alg = DIRECT;
38 attr_t attr;
39 const char *skip_impl = "";
40 bool allow_unimpl = false;
41 const char *perf_template = "perf,%n,%d,%GO,%GF,%-t,%-Gp,%0t,%0Gp";
42
43 void reset_parameters() {
44     cfg = conf_f32;
45     pattern = NULL;
46     dir = FWD_B;
47     mb = 0;
48     alg = DIRECT;
49     attr = attr_t();
50     skip_impl = "";
51     allow_unimpl = false;
52 }
53
54 void check_correctness(const desc_t *c) {
55     const prb_t p(*c, dir, cfg, alg, attr, mb);
56     char pstr[max_prb_len];
57     prb2str(&p, pstr);
58
59     if (pattern && !match_regex(pstr, pattern))
60         return;
61     print(1, "run: %s\n", pstr);
62
63     res_t res{};
64     const int status = conv::doit(&p, &res);
65     (void)status;
66
67     bool want_perf_report = false;
68
69     parse_result(res, want_perf_report, allow_unimpl, status, pstr);
70
71     if (want_perf_report && bench_mode & PERF)
72         perf_report(&p, &res, pstr);
73
74     benchdnn_stat.tests++;
75 }
76
77 int bench(int argc, char **argv, bool main_bench) {
78     for (int arg = 0; arg < argc; ++arg) {
79         if (!strncmp("--batch=", argv[arg], 8))
80             SAFE(batch(argv[arg] + 8, bench), CRIT);
81         else if (!strncmp("--cfg=", argv[arg], 6))
82             cfg = str2cfg(argv[arg] + 6);
83         else if (!strncmp("--match=", argv[arg], 8))
84             pattern = argv[arg] + 8;
85         else if (!strncmp("--mb=", argv[arg], 5))
86             mb = atoi(argv[arg] + 5);
87         else if (!strncmp("--dir=", argv[arg], 6))
88             dir = str2dir(argv[arg] + 6);
89         else if (!strncmp("--alg=", argv[arg], 6))
90             alg = str2alg(argv[arg] + 6);
91         else if (!strncmp("--attr=", argv[arg], 7))
92             SAFE(str2attr(&attr, argv[arg] + 7), CRIT);
93         else if (!strncmp("--skip-impl=", argv[arg], 12))
94             skip_impl = argv[arg] + 12;
95         else if (!strncmp("--allow-unimpl=", argv[arg], 15))
96             allow_unimpl = str2bool(argv[arg] + 15);
97         else if (!strncmp("--perf-template=", argv[arg], 16))
98             perf_template = argv[arg] + 16;
99         else if (!strcmp("--reset", argv[arg]))
100             reset_parameters();
101         else if (!strncmp("--mode=", argv[arg], 7))
102             bench_mode = str2bench_mode(argv[arg] + 7);
103         else if (!strncmp("-v", argv[arg], 2))
104             verbose = atoi(argv[arg] + 2);
105         else if (!strncmp("--verbose=", argv[arg], 10))
106             verbose = atoi(argv[arg] + 10);
107         else {
108             desc_t c;
109             bool is_deconv = 0;
110             if (str2desc(&c, argv[arg], is_deconv) == FAIL) {
111                 fprintf(stderr, "driver: unknown option: `%s`, exiting...\n",
112                         argv[arg]);
113                 exit(2);
114             }
115             check_correctness(&c);
116         }
117     }
118
119     return OK;
120 }
121
122 }