sh_commands.py 37.4 KB
Newer Older
Y
yejianwu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright 2018 Xiaomi, Inc.  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.

Y
yejianwu 已提交
15 16
import falcon_cli
import filelock
Y
yejianwu 已提交
17 18
import glob
import os
19
import re
Y
yejianwu 已提交
20
import sh
Y
yejianwu 已提交
21
import subprocess
22
import sys
23 24
import time

L
Liangliang He 已提交
25

26 27 28 29 30 31 32 33 34 35 36 37 38
sys.path.insert(0, "mace/python/tools")
try:
    from encrypt_opencl_codegen import encrypt_opencl_codegen
    from opencl_codegen import opencl_codegen
    from binary_codegen import tuning_param_codegen
    from generate_data import generate_input_data
    from validate import validate
except Exception:
    print("Error: import error.")
    print("Does the script run at the root dir of mace project?")
    exit(1)


39 40 41 42
################################
# common
################################
def strip_invalid_utf8(str):
L
Liangliang He 已提交
43 44
    return sh.iconv(str, "-c", "-t", "UTF-8")

45 46

def make_output_processor(buff):
L
Liangliang He 已提交
47 48 49 50 51 52
    def process_output(line):
        print(line.strip())
        buff.append(line)

    return process_output

53

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
def device_lock_path(serialno):
    return "/tmp/device-lock-%s" % serialno


def device_lock(serialno, timeout=3600):
    return filelock.FileLock(device_lock_path(serialno), timeout=timeout)


def is_device_locked(serialno):
    try:
        with device_lock(serialno, timeout=0.000001):
            return False
    except filelock.Timeout:
        return True


Y
yejianwu 已提交
70 71 72 73 74 75 76 77 78 79
def formatted_file_name(input_name, input_file_name):
    return input_file_name + '_' + \
           re.sub('[^0-9a-zA-Z]+', '_', input_name)


################################
# clear data
################################
def clear_mace_run_data(abi,
                        target_soc,
80 81
                        phone_data_dir,
                        model_codegen_dir="mace/codegen/models"):
Y
yejianwu 已提交
82 83 84 85 86
    if abi != "host":
        serialno = adb_devices([target_soc]).pop()
        sh.adb("-s",
               serialno,
               "shell",
87
               "rm -rf %s" % phone_data_dir)
Y
yejianwu 已提交
88 89 90 91
    if os.path.exists(model_codegen_dir):
        sh.rm("-rf", model_codegen_dir)


92 93 94 95
################################
# adb commands
################################
def adb_split_stdout(stdout_str):
L
Liangliang He 已提交
96 97 98 99
    stdout_str = strip_invalid_utf8(stdout_str)
    # Filter out last empty line
    return [l.strip() for l in stdout_str.split('\n') if len(l.strip()) > 0]

100 101

def adb_devices(target_socs=None):
102 103 104 105 106 107 108
    device_ids = []
    p = re.compile(r'(\w+)\s+device')
    for line in adb_split_stdout(sh.adb("devices")):
        m = p.match(line)
        if m:
            device_ids.append(m.group(1))

L
Liangliang He 已提交
109 110 111 112 113 114 115 116 117 118 119
    if target_socs is not None:
        target_socs_set = set(target_socs)
        target_devices = []
        for serialno in device_ids:
            props = adb_getprop_by_serialno(serialno)
            if props["ro.board.platform"] in target_socs_set:
                target_devices.append(serialno)
        return target_devices
    else:
        return device_ids

120 121

def adb_getprop_by_serialno(serialno):
L
Liangliang He 已提交
122 123 124
    outputs = sh.adb("-s", serialno, "shell", "getprop")
    raw_props = adb_split_stdout(outputs)
    props = {}
125
    p = re.compile(r'\[(.+)\]: \[(.+)\]')
L
Liangliang He 已提交
126 127 128 129 130 131
    for raw_prop in raw_props:
        m = p.match(raw_prop)
        if m:
            props[m.group(1)] = m.group(2)
    return props

132

133
def adb_supported_abis(serialno):
L
Liangliang He 已提交
134 135 136 137 138
    props = adb_getprop_by_serialno(serialno)
    abilist_str = props["ro.product.cpu.abilist"]
    abis = [abi.strip() for abi in abilist_str.split(',')]
    return abis

139

140
def adb_get_all_socs():
L
Liangliang He 已提交
141 142 143 144 145
    socs = []
    for d in adb_devices():
        props = adb_getprop_by_serialno(d)
        socs.append(props["ro.board.platform"])
    return set(socs)
146

L
Liangliang He 已提交
147

Y
yejianwu 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160
def adb_push(src_path, dst_path, serialno):
    print("Push %s to %s" % (src_path, dst_path))
    sh.adb("-s", serialno, "push", src_path, dst_path)


def adb_pull(src_path, dst_path, serialno):
    print("Pull %s to %s" % (src_path, dst_path))
    try:
        sh.adb("-s", serialno, "pull", src_path, dst_path)
    except Exception as e:
        print("Error msg: %s" % e.stderr)


L
Liangliang He 已提交
161 162 163
def adb_run(serialno,
            host_bin_path,
            bin_name,
164 165 166
            args="",
            opencl_profiling=1,
            vlog_level=0,
167 168
            device_bin_path="/data/local/tmp/mace",
            out_of_range_check=1):
L
Liangliang He 已提交
169 170 171 172 173 174
    host_bin_full_path = "%s/%s" % (host_bin_path, bin_name)
    device_bin_full_path = "%s/%s" % (device_bin_path, bin_name)
    props = adb_getprop_by_serialno(serialno)
    print(
        "====================================================================="
    )
175 176 177 178 179
    print("Trying to lock device", serialno)
    with device_lock(serialno):
        print("Run on device: %s, %s, %s" %
              (serialno, props["ro.board.platform"],
               props["ro.product.model"]))
Y
yejianwu 已提交
180 181
        sh.adb("-s", serialno, "shell", "rm -rf %s" % device_bin_path)
        sh.adb("-s", serialno, "shell", "mkdir -p %s" % device_bin_path)
Y
yejianwu 已提交
182
        adb_push(host_bin_full_path, device_bin_full_path, serialno)
Y
yejianwu 已提交
183 184 185 186 187 188 189 190 191 192
        print("Run %s" % device_bin_full_path)
        stdout_buff = []
        process_output = make_output_processor(stdout_buff)
        p = sh.adb(
            "-s",
            serialno,
            "shell",
            "MACE_OUT_OF_RANGE_CHECK=%d MACE_OPENCL_PROFILING=%d "
            "MACE_CPP_MIN_VLOG_LEVEL=%d %s %s" %
            (out_of_range_check, opencl_profiling, vlog_level,
193
             device_bin_full_path, args),
Y
yejianwu 已提交
194 195 196 197 198
            _out=process_output,
            _bg=True,
            _err_to_out=True)
        p.wait()
        return "".join(stdout_buff)
199 200 201 202 203


################################
# bazel commands
################################
Y
yejianwu 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
def bazel_build(target,
                strip="always",
                abi="armeabi-v7a",
                model_tag="",
                production_mode=False,
                hexagon_mode=False,
                disable_no_tuning_warning=False):
    print("* Build %s with ABI %s" % (target, abi))
    stdout_buff = []
    process_output = make_output_processor(stdout_buff)
    if abi == "host":
        p = sh.bazel(
            "build",
            "-c",
            "opt",
            "--strip",
            strip,
            "--verbose_failures",
            target,
            "--copt=-std=c++11",
            "--copt=-D_GLIBCXX_USE_C99_MATH_TR1",
            "--copt=-Werror=return-type",
            "--copt=-DMACE_MODEL_TAG=%s" % model_tag,
            "--copt=-O3",
            "--define",
            "openmp=true",
            "--define",
            "production=%s" % str(production_mode).lower(),
            _out=process_output,
            _bg=True,
            _err_to_out=True)
        p.wait()
    else:
        bazel_args = (
            "build",
            "-c",
            "opt",
            "--strip",
            strip,
            "--verbose_failures",
            target,
            "--crosstool_top=//external:android/crosstool",
            "--host_crosstool_top=@bazel_tools//tools/cpp:toolchain",
            "--cpu=%s" % abi,
            "--copt=-std=c++11",
            "--copt=-D_GLIBCXX_USE_C99_MATH_TR1",
            "--copt=-Werror=return-type",
            "--copt=-DMACE_OBFUSCATE_LITERALS",
            "--copt=-DMACE_MODEL_TAG=%s" % model_tag,
            "--copt=-O3",
            "--define",
            "neon=true",
            "--define",
            "openmp=true",
            "--define",
            "production=%s" % str(production_mode).lower(),
            "--define",
            "hexagon=%s" % str(hexagon_mode).lower())
        if disable_no_tuning_warning:
            bazel_args += ("--copt=-DMACE_DISABLE_NO_TUNING_WARNING",)
        p = sh.bazel(
            _out=process_output,
            _bg=True,
            _err_to_out=True,
            *bazel_args)
        p.wait()
    print("Building done!\n")
    return "".join(stdout_buff)


def bazel_build_common(target, build_args=""):
L
Liangliang He 已提交
275 276 277 278
    stdout_buff = []
    process_output = make_output_processor(stdout_buff)
    p = sh.bazel(
        "build",
Y
yejianwu 已提交
279
        target + build_args,
L
Liangliang He 已提交
280 281 282 283 284 285
        _out=process_output,
        _bg=True,
        _err_to_out=True)
    p.wait()
    return "".join(stdout_buff)

286 287

def bazel_target_to_bin(target):
L
Liangliang He 已提交
288 289 290 291 292 293 294 295
    # change //mace/a/b:c to bazel-bin/mace/a/b/c
    prefix, bin_name = target.split(':')
    prefix = prefix.replace('//', '/')
    if prefix.startswith('/'):
        prefix = prefix[1:]
    host_bin_path = "bazel-bin/%s" % prefix
    return host_bin_path, bin_name

296 297 298 299 300

################################
# mace commands
################################
def gen_encrypted_opencl_source(codegen_path="mace/codegen"):
L
Liangliang He 已提交
301
    sh.mkdir("-p", "%s/opencl" % codegen_path)
302 303
    encrypt_opencl_codegen("./mace/kernels/opencl/cl/",
                           "mace/codegen/opencl/opencl_encrypt_program.cc")
L
Liangliang He 已提交
304

305

306
def pull_binaries(target_soc, abi, model_output_dirs):
Y
yejianwu 已提交
307 308
    serialno = adb_devices([target_soc]).pop()
    compiled_opencl_dir = "/data/local/tmp/mace_run/cl_program/"
309
    mace_run_param_file = "mace_run.config"
Y
yejianwu 已提交
310 311 312 313 314

    cl_bin_dirs = []
    for d in model_output_dirs:
        cl_bin_dirs.append(os.path.join(d, "opencl_bin"))
    cl_bin_dirs_str = ",".join(cl_bin_dirs)
315
    if cl_bin_dirs:
Y
yejianwu 已提交
316 317 318 319 320 321
        cl_bin_dir = cl_bin_dirs_str
        if os.path.exists(cl_bin_dir):
            sh.rm("-rf", cl_bin_dir)
        sh.mkdir("-p", cl_bin_dir)
        if abi != "host":
            adb_pull(compiled_opencl_dir, cl_bin_dir, serialno)
322
            adb_pull("/data/local/tmp/mace_run/%s" % mace_run_param_file,
Y
yejianwu 已提交
323 324 325 326 327 328 329 330
                     cl_bin_dir, serialno)


def gen_opencl_binary_code(target_soc,
                           model_output_dirs,
                           codegen_path="mace/codegen"):
    cl_built_kernel_file_name = "mace_cl_compiled_program.bin"
    cl_platform_info_file_name = "mace_cl_platform_info.txt"
331
    opencl_codegen_file = "%s/opencl/opencl_compiled_program.cc" % codegen_path
Y
yejianwu 已提交
332 333 334 335 336 337 338

    serialno = adb_devices([target_soc]).pop()

    cl_bin_dirs = []
    for d in model_output_dirs:
        cl_bin_dirs.append(os.path.join(d, "opencl_bin"))
    cl_bin_dirs_str = ",".join(cl_bin_dirs)
339 340 341 342
    opencl_codegen(opencl_codegen_file,
                   cl_bin_dirs_str,
                   cl_built_kernel_file_name,
                   cl_platform_info_file_name)
Y
yejianwu 已提交
343 344 345 346 347


def gen_tuning_param_code(target_soc,
                          model_output_dirs,
                          codegen_path="mace/codegen"):
348
    mace_run_param_file = "mace_run.config"
Y
yejianwu 已提交
349 350 351 352
    cl_bin_dirs = []
    for d in model_output_dirs:
        cl_bin_dirs.append(os.path.join(d, "opencl_bin"))
    cl_bin_dirs_str = ",".join(cl_bin_dirs)
353 354 355 356 357

    tuning_codegen_dir = "%s/tuning/" % codegen_path
    if not os.path.exists(tuning_codegen_dir):
        sh.mkdir("-p", tuning_codegen_dir)

358 359 360 361 362
    tuning_param_variable_name = "kTuningParamsData"
    tuning_param_codegen(cl_bin_dirs_str,
                         mace_run_param_file,
                         "%s/tuning_params.cc" % tuning_codegen_dir,
                         tuning_param_variable_name)
Y
yejianwu 已提交
363 364


365
def gen_mace_version(codegen_path="mace/codegen"):
L
Liangliang He 已提交
366 367 368 369
    sh.mkdir("-p", "%s/version" % codegen_path)
    sh.bash("mace/tools/git/gen_version_source.sh",
            "%s/version/version.cc" % codegen_path)

370

L
liuqi 已提交
371
def gen_compiled_opencl_source(codegen_path="mace/codegen"):
372
    opencl_codegen_file = "%s/opencl/opencl_compiled_program.cc" % codegen_path
L
Liangliang He 已提交
373
    sh.mkdir("-p", "%s/opencl" % codegen_path)
374
    opencl_codegen(opencl_codegen_file)
L
Liangliang He 已提交
375

L
liuqi 已提交
376

Y
yejianwu 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
def gen_model_code(model_codegen_dir,
                   platform,
                   model_file_path,
                   weight_file_path,
                   model_sha256_checksum,
                   input_nodes,
                   output_nodes,
                   data_type,
                   runtime,
                   model_tag,
                   input_shapes,
                   dsp_mode,
                   embed_model_data,
                   fast_conv,
                   obfuscate):
    print("* Genearte model code")
    bazel_build_common("//mace/python/tools:converter")
    if os.path.exists(model_codegen_dir):
        sh.rm("-rf", model_codegen_dir)
    sh.mkdir("-p", model_codegen_dir)
    sh.python("bazel-bin/mace/python/tools/converter",
              "-u",
              "--platform=%s" % platform,
              "--model_file=%s" % model_file_path,
              "--weight_file=%s" % weight_file_path,
              "--model_checksum=%s" % model_sha256_checksum,
              "--output=%s" % model_codegen_dir + "/model.cc",
              "--input_node=%s" % input_nodes,
              "--output_node=%s" % output_nodes,
              "--data_type=%s" % data_type,
              "--runtime=%s" % runtime,
              "--output_type=source",
              "--template=%s" % "mace/python/tools",
              "--model_tag=%s" % model_tag,
              "--input_shape=%s" % input_shapes,
              "--dsp_mode=%s" % dsp_mode,
              "--embed_model_data=%s" % embed_model_data,
              "--winograd=%s" % fast_conv,
              "--obfuscate=%s" % obfuscate)
    print("Model code gen done!\n")


def gen_random_input(model_output_dir,
                     input_nodes,
                     input_shapes,
                     input_files,
                     input_file_name="model_input"):
    for input_name in input_nodes:
        formatted_name = formatted_file_name(input_name, input_file_name)
426 427
        if os.path.exists("%s/%s" % (model_output_dir, formatted_name)):
            sh.rm("%s/%s" % (model_output_dir, formatted_name))
Y
yejianwu 已提交
428 429
    input_nodes_str = ",".join(input_nodes)
    input_shapes_str = ":".join(input_shapes)
430 431 432
    generate_input_data("%s/%s" % (model_output_dir, input_file_name),
                        input_nodes_str,
                        input_shapes_str)
Y
yejianwu 已提交
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

    input_file_list = []
    if isinstance(input_files, list):
        input_file_list.extend(input_files)
    else:
        input_file_list.append(input_files)
    if len(input_file_list) != 0:
        input_name_list = []
        if isinstance(input_names, list):
            input_name_list.extend(input_names)
        else:
            input_name_list.append(input_names)
        if len(input_file_list) != len(input_name_list):
            raise Exception('If input_files set, the input files should '
                            'match the input names.')
        for i in range(len(input_file_list)):
            if input_file_list[i] is not None:
                dst_input_file = model_output_dir + '/' + \
                        formatted_file_name(input_name_list[i],
                                            input_file_name)
                if input_file_list[i].startswith("http://") or \
                        input_file_list[i].startswith("https://"):
                    urllib.urlretrieve(input_file_list[i], dst_input_file)
                else:
457
                    sh.cp("-f", input_file_list[i], dst_input_file)
Y
yejianwu 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476


def update_mace_run_lib(model_output_dir,
                        abi,
                        model_tag,
                        embed_model_data,
                        generated_model_lib_dir="bazel-bin/mace/codegen/"):
    model_lib_path = model_output_dir + "/libmace_%s.a" % model_tag
    if abi == "host":
        bazel_build(
                "//mace/codegen:generated_models",
                abi=abi,
                model_tag=model_tag)
        generated_model_lib_name = "libgenerated_models.pic.a"
    else:
        generated_model_lib_name = "libgenerated_models.a"

    if os.path.exists(model_lib_path):
        sh.rm("-rf", model_lib_path)
477
    sh.cp("-f", generated_model_lib_dir + "/" + generated_model_lib_name,
Y
yejianwu 已提交
478 479 480 481 482
          model_lib_path)

    mace_run_filepath = model_output_dir + "/mace_run"
    if os.path.exists(mace_run_filepath):
        sh.rm("-rf", mace_run_filepath)
483
    sh.cp("-f", "bazel-bin/mace/tools/validation/mace_run", model_output_dir)
Y
yejianwu 已提交
484 485

    if embed_model_data == 0:
486
        sh.cp("-f", "mace/codegen/models/%s/%s.data" % (model_tag, model_tag),
Y
yejianwu 已提交
487 488
              model_output_dir)

489
    sh.cp("-f", "mace/codegen/models/%s/%s.h" % (model_tag, model_tag),
Y
yejianwu 已提交
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
          model_output_dir)


def tuning_run(target_soc,
               abi,
               vlog_level,
               embed_model_data,
               model_output_dir,
               input_nodes,
               output_nodes,
               input_shapes,
               output_shapes,
               model_tag,
               device_type,
               running_round,
               restart_round,
               limit_opencl_kernel_time,
               tuning,
               out_of_range_check,
509
               phone_data_dir,
Y
yejianwu 已提交
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
               option_args="",
               input_file_name="model_input",
               output_file_name="model_out"):
    print("* Run '%s' with round=%s, restart_round=%s, tuning=%s" %
          (model_tag, running_round, restart_round, str(tuning)))
    stdout_buff = []
    process_output = make_output_processor(stdout_buff)
    if abi == "host":
        p = subprocess.Popen([
                "env",
                "MACE_CPP_MIN_VLOG_LEVEL=%s" % vlog_level,
                "%s/mace_run" % model_output_dir,
                "--input_node=%s" % ",".join(input_nodes),
                "--output_node=%s" % ",".join(output_nodes),
                "--input_shape=%s" % ":".join(input_shapes),
                "--output_shape=%s" % ":".join(output_shapes),
                "--input_file=%s/%s" % (model_output_dir, input_file_name),
                "--output_file=%s/%s" % (model_output_dir, output_file_name),
                "--model_data_file=%s/%s.data" % (model_output_dir, model_tag),
                "--device=%s" % device_type,
                "--round=%s" % running_round,
                "--restart_round=%s" % restart_round,
                "%s" % option_args])
        p.wait()
    else:
        serialno = adb_devices([target_soc]).pop()
        sh.adb("-s", serialno, "shell", "mkdir", "-p", phone_data_dir)
        compiled_opencl_dir = "/data/local/tmp/mace_run/cl_program/"
        sh.adb("-s", serialno, "shell", "mkdir", "-p", compiled_opencl_dir)

        for input_name in input_nodes:
            formatted_name = formatted_file_name(input_name,
                                                 input_file_name)
            adb_push("%s/%s" % (model_output_dir, formatted_name),
                     phone_data_dir, serialno)
        adb_push("%s/mace_run" % model_output_dir, phone_data_dir,
                 serialno)
        if not embed_model_data:
            adb_push("%s/%s.data" % (model_output_dir, model_tag),
                     phone_data_dir, serialno)
        adb_push("mace/core/runtime/hexagon/libhexagon_controller.so",
                 phone_data_dir, serialno)

        p = sh.adb(
                "-s",
                serialno,
                "shell",
                "LD_LIBRARY_PATH=%s" % phone_data_dir,
                "MACE_TUNING=%s" % int(tuning),
                "MACE_OUT_OF_RANGE_CHECK=%s" % int(out_of_range_check),
                "MACE_CPP_MIN_VLOG_LEVEL=%s" % vlog_level,
                "MACE_RUN_PARAMETER_PATH=%s/mace_run.config" %
                phone_data_dir,
                "MACE_CL_PROGRAM_PATH=%s/cl_program" % phone_data_dir,
                "MACE_LIMIT_OPENCL_KERNEL_TIME=%s" %
                limit_opencl_kernel_time,
                "%s/mace_run" % phone_data_dir,
                "--input_node=%s" % ",".join(input_nodes),
                "--output_node=%s" % ",".join(output_nodes),
                "--input_shape=%s" % ":".join(input_shapes),
                "--output_shape=%s" % ":".join(output_shapes),
                "--input_file=%s/%s" % (phone_data_dir, input_file_name),
                "--output_file=%s/%s" % (phone_data_dir, output_file_name),
                "--model_data_file=%s/%s.data" % (phone_data_dir, model_tag),
                "--device=%s" % device_type,
                "--round=%s" % running_round,
                "--restart_round=%s" % restart_round,
                "%s" % option_args,
                _out=process_output,
                _bg=True,
                _err_to_out=True)
        p.wait()

    print("Running finished!\n")
    return "".join(stdout_buff)


def validate_model(target_soc,
                   abi,
                   model_file_path,
                   weight_file_path,
                   platform,
                   runtime,
                   input_nodes,
                   output_nodes,
                   input_shapes,
                   output_shapes,
                   model_output_dir,
598
                   phone_data_dir,
Y
yejianwu 已提交
599 600 601 602 603 604 605 606 607 608
                   input_file_name="model_input",
                   output_file_name="model_out"):
    print("* Validate with %s" % platform)
    serialno = adb_devices([target_soc]).pop()

    if platform == "tensorflow":
        if abi != "host":
            for output_name in output_nodes:
                formatted_name = formatted_file_name(
                        output_name, output_file_name)
609 610 611
                if os.path.exists("%s/%s" % (model_output_dir,
                                             formatted_name)):
                    sh.rm("%s/%s" % (model_output_dir, formatted_name))
Y
yejianwu 已提交
612 613
                adb_pull("%s/%s" % (phone_data_dir, formatted_name),
                         model_output_dir, serialno)
614 615 616 617 618
        validate(platform, model_file_path, "",
                 "%s/%s" % (model_output_dir, input_file_name),
                 "%s/%s" % (model_output_dir, output_file_name), runtime,
                 ":".join(input_shapes), ":".join(output_shapes),
                 ",".join(input_nodes), ",".join(output_nodes))
Y
yejianwu 已提交
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677
    elif platform == "caffe":
        image_name = "mace-caffe:latest"
        container_name = "mace_caffe_validator"
        res_file = "validation.result"

        docker_image_id = sh.docker("images", "-q", image_name)
        if not docker_image_id:
            print("Build caffe docker")
            sh.docker("build", "-t", image_name, "docker/caffe")

        container_id = sh.docker("ps", "-qa", "-f", "name=%s" % container_name)
        if not container_id:
            print("Run caffe container")
            sh.docker(
                    "run",
                    "-d",
                    "-it",
                    "--name",
                    container_name,
                    image_name,
                    "/bin/bash")

        container_status = sh.docker("inspect",
                                     "-f",
                                     "{{.State.Running}}",
                                     container_name)
        if container_status == "false":
            print("Start caffe container")
            sh.docker("start", container_name)

        for input_name in input_nodes:
            formatted_input_name = formatted_file_name(
                    input_name, input_file_name)
            sh.docker(
                    "cp",
                    "%s/%s" % (model_output_dir, formatted_input_name),
                    "%s:/mace" % container_name)

        if abi != "host":
            for output_name in output_nodes:
                formatted_output_name = formatted_file_name(
                        output_name, output_file_name)
                sh.rm("-rf",
                      "%s/%s" % (model_output_dir, formatted_output_name))
                adb_pull("%s/%s" % (phone_data_dir, formatted_output_name),
                         model_output_dir, serialno)

        for output_name in output_nodes:
            formatted_output_name = formatted_file_name(
                    output_name, output_file_name)
            sh.docker(
                    "cp",
                    "%s/%s" % (model_output_dir, formatted_output_name),
                    "%s:/mace" % container_name)
        model_file_name = os.path.basename(model_file_path)
        weight_file_name = os.path.basename(weight_file_path)
        sh.docker("cp", "tools/validate.py", "%s:/mace" % container_name)
        sh.docker("cp", model_file_path, "%s:/mace" % container_name)
        sh.docker("cp", weight_file_path, "%s:/mace" % container_name)
Y
yejianwu 已提交
678 679 680

        stdout_buff = []
        process_output = make_output_processor(stdout_buff)
Y
yejianwu 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
        p = sh.docker(
                "exec",
                container_name,
                "python",
                "-u",
                "/mace/validate.py",
                "--platform=caffe",
                "--model_file=/mace/%s" % model_file_name,
                "--weight_file=/mace/%s" % weight_file_name,
                "--input_file=/mace/%s" % input_file_name,
                "--mace_out_file=/mace/%s" % output_file_name,
                "--mace_runtime=%s" % runtime,
                "--input_node=%s" % ",".join(input_nodes),
                "--output_node=%s" % ",".join(output_nodes),
                "--input_shape=%s" % ":".join(input_shapes),
                "--output_shape=%s" % ":".join(output_shapes),
                _out=process_output,
                _bg=True,
                _err_to_out=True)
        p.wait()

    print("Validation done!\n")


def build_production_code(abi):
    bazel_build("//mace/codegen:generated_opencl", abi=abi)
    bazel_build("//mace/codegen:generated_tuning_params", abi=abi)


def merge_libs(target_soc,
               abi,
               project_name,
               libmace_output_dir,
               model_output_dirs,
               hexagon_mode,
               embed_model_data):
    print("* Merge mace lib")
    project_output_dir = "%s/%s" % (libmace_output_dir, project_name)
    model_header_dir = "%s/include/mace/public" % project_output_dir
    model_data_dir = "%s/data" % project_output_dir
    hexagon_lib_file = "mace/core/runtime/hexagon/libhexagon_controller.so"
    model_bin_dir = "%s/%s/" % (project_output_dir, abi)

    if not os.path.exists(model_bin_dir):
        sh.mkdir("-p", model_bin_dir)
    if not os.path.exists(model_header_dir):
        sh.mkdir("-p", model_header_dir)
728
    sh.cp("-f", glob.glob("mace/public/*.h"), model_header_dir)
Y
yejianwu 已提交
729 730 731
    if not os.path.exists(model_data_dir):
        sh.mkdir("-p", model_data_dir)
    if hexagon_mode:
732
        sh.cp("-f", hexagon_lib_file, model_bin_dir)
Y
yejianwu 已提交
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774

    mri_stream = ""
    mri_stream += "create %s/libmace_%s.%s.a\n" % \
                  (model_bin_dir, project_name, target_soc)

    if abi == "host":
        mri_stream += (
                "addlib "
                "bazel-bin/mace/codegen/libgenerated_opencl.pic.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/codegen/libgenerated_tuning_params.pic.a\n")
    else:
        mri_stream += (
                "addlib "
                "bazel-bin/mace/codegen/libgenerated_opencl.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/codegen/libgenerated_tuning_params.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/codegen/libgenerated_version.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/core/libcore.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/kernels/libkernels.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/utils/libutils.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/utils/libutils_prod.a\n")
        mri_stream += (
                "addlib "
                "bazel-bin/mace/ops/libops.lo\n")

    for model_output_dir in model_output_dirs:
        for lib in sh.ls(glob.glob("%s/*.a" % model_output_dir), "-1"):
            mri_stream += "addlib %s\n" % lib
        if not embed_model_data:
775 776 777
            sh.cp("-f", glob.glob("%s/*.data" % model_output_dir),
                  model_data_dir)
        sh.cp("-f", glob.glob("%s/*.h" % model_output_dir), model_header_dir)
Y
yejianwu 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829

    mri_stream += "save\n"
    mri_stream += "end\n"

    cmd = sh.Command("%s/toolchains/" % os.environ["ANDROID_NDK_HOME"] +
                     "aarch64-linux-android-4.9/prebuilt/linux-x86_64/" +
                     "bin/aarch64-linux-android-ar")

    cmd("-M", _in=mri_stream)

    print("Libs merged!\n")


def packaging_lib(libmace_output_dir, project_name):
    print("* Package libs for %s" % project_name)
    tar_package_name = "libmace_%s.tar.gz" % project_name
    project_dir = "%s/%s" % (libmace_output_dir, project_name)
    tar_package_path = "%s/%s" % (project_dir, tar_package_name)
    if os.path.exists(tar_package_path):
        sh.rm("-rf", tar_package_path)

    print("Start packaging '%s' libs into %s" % (project_name,
                                                 tar_package_path))
    # ls ${project_dir} -1 | grep -v build | grep -v .tar.gz | xargs -I {} \
    #       tar cvzf ${project_dir}/${tar_package_name} ${project_name}/{}
    sh.xargs(
            sh.grep(
                sh.grep(
                    sh.ls(project_dir, "-1"),
                    "-v", "build"),
                "-v", ".tar.gz"),
            "-I",
            "{}",
            "tar",
            "cvzf",
            "%s" % tar_package_path,
            "%s/{}" % project_dir)
    print("Packaging Done!\n")


def benchmark_model(target_soc,
                    abi,
                    vlog_level,
                    embed_model_data,
                    model_output_dir,
                    input_nodes,
                    output_nodes,
                    input_shapes,
                    output_shapes,
                    model_tag,
                    device_type,
                    hexagon_mode,
830
                    phone_data_dir,
Y
yejianwu 已提交
831 832 833 834 835 836 837 838
                    option_args="",
                    input_file_name="model_input",
                    output_file_name="model_out"):
    print("* Benchmark for %s" % model_tag)
    benchmark_binary_file = "%s/benchmark_model" % model_output_dir
    if os.path.exists(benchmark_binary_file):
        sh.rm("-rf", benchmark_binary_file)
    if not embed_model_data:
839
        sh.cp("-f", "codegen/models/%s/%s.data" % (model_tag, model_tag),
Y
yejianwu 已提交
840 841 842 843 844 845 846 847 848
              model_output_dir)

    benchmark_target = "//mace/benchmark:benchmark_model"
    bazel_build(benchmark_target,
                abi=abi,
                model_tag=model_tag,
                hexagon_mode=hexagon_mode)

    target_bin = "/".join(bazel_target_to_bin(benchmark_target))
849
    sh.cp("-f", target_bin, model_output_dir)
Y
yejianwu 已提交
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921

    stdout_buff = []
    process_output = make_output_processor(stdout_buff)
    if abi == "host":
        p = subprocess.Popen([
                "env",
                "MACE_CPP_MIN_VLOG_LEVEL=%s" % vlog_level,
                "%s/benchmark_model" % model_output_dir,
                "--input_node=%s" % ",".join(input_nodes),
                "--output_node=%s" % ",".join(output_nodes),
                "--input_shape=%s" % ":".join(input_shapes),
                "--output_shape=%s" % ":".join(output_shapes),
                "--input_file=%s/%s" % (model_output_dir, input_file_name),
                "--model_data_file=%s/%s.data" % (model_output_dir, model_tag),
                "--device=%s" % device_type,
                "%s" % option_args])
        p.wait()
    else:
        serialno = adb_devices([target_soc]).pop()
        sh.adb("-s", serialno, "shell", "mkdir", "-p", phone_data_dir)

        for input_name in input_nodes:
            formatted_name = formatted_file_name(input_name,
                                                 input_file_name)
            adb_push("%s/%s" % (model_output_dir, formatted_name),
                     phone_data_dir, serialno)
        adb_push("%s/benchmark_model" % model_output_dir, phone_data_dir,
                 serialno)
        if not embed_model_data:
            adb_push("%s/%s.data" % (model_output_dir, model_tag),
                     phone_data_dir, serialno)
        p = sh.adb(
                "-s",
                serialno,
                "shell",
                "LD_LIBRARY_PATH=%s" % phone_data_dir,
                "MACE_CPP_MIN_VLOG_LEVEL=%s" % vlog_level,
                "MACE_RUN_PARAMETER_PATH=%s/mace_run.config" %
                phone_data_dir,
                "MACE_OPENCL_PROFILING=1",
                "%s/benchmark_model" % phone_data_dir,
                "--input_node=%s" % ",".join(input_nodes),
                "--output_node=%s" % ",".join(output_nodes),
                "--input_shape=%s" % ":".join(input_shapes),
                "--output_shape=%s" % ":".join(output_shapes),
                "--input_file=%s/%s" % (phone_data_dir, input_file_name),
                "--model_data_file=%s/%s.data" % (phone_data_dir, model_tag),
                "--device=%s" % device_type,
                "%s" % option_args,
                _out=process_output,
                _bg=True,
                _err_to_out=True)
        p.wait()

    print("Benchmark done!\n")
    return "".join(stdout_buff)


def build_run_throughput_test(target_soc,
                              abi,
                              vlog_level,
                              run_seconds,
                              merged_lib_file,
                              model_input_dir,
                              embed_model_data,
                              input_nodes,
                              output_nodes,
                              input_shapes,
                              output_shapes,
                              cpu_model_tag,
                              gpu_model_tag,
                              dsp_model_tag,
922
                              phone_data_dir,
Y
yejianwu 已提交
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
                              strip="always",
                              input_file_name="model_input"):
    print("* Build and run throughput_test")
    serialno = adb_devices([target_soc]).pop()

    model_tag_build_flag = ""
    if cpu_model_tag:
        model_tag_build_flag += "--copt=-DMACE_CPU_MODEL_TAG=%s " % \
                                cpu_model_tag
    if gpu_model_tag:
        model_tag_build_flag += "--copt=-DMACE_GPU_MODEL_TAG=%s " % \
                                gpu_model_tag
    if dsp_model_tag:
        model_tag_build_flag += "--copt=-DMACE_DSP_MODEL_TAG=%s " % \
                                dsp_model_tag

939
    sh.cp("-f", merged_lib_file, "mace/benchmark/libmace_merged.a")
Y
yejianwu 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
    stdout_buff = []
    process_output = make_output_processor(stdout_buff)
    p = sh.bazel(
        "build",
        "-c",
        "opt",
        "--strip",
        strip,
        "--verbose_failures",
        "//mace/benchmark:model_throughput_test",
        "--crosstool_top=//external:android/crosstool",
        "--host_crosstool_top=@bazel_tools//tools/cpp:toolchain",
        "--cpu=%s" % abi,
        "--copt=-std=c++11",
        "--copt=-D_GLIBCXX_USE_C99_MATH_TR1",
        "--copt=-Werror=return-type",
        "--copt=-O3",
        "--define",
        "neon=true",
        "--define",
        "openmp=true",
        model_tag_build_flag,
        _out=process_output,
        _bg=True,
        _err_to_out=True)
    p.wait()

    sh.rm("mace/benchmark/libmace_merged.a")
    sh.adb("-s",
           serialno,
           "shell",
           "mkdir",
           "-p",
           phone_data_dir)
    adb_push("%s/%s_%s" % (model_input_dir, input_file_name,
                           ",".join(input_nodes)),
             phone_data_dir,
             serialno)
    adb_push("bazel-bin/mace/benchmark/model_throughput_test",
             phone_data_dir,
             serialno)
    if not embed_model_data:
        adb_push("codegen/models/%s/%s.data" % cpu_model_tag,
                 phone_data_dir,
                 serialno)
        adb_push("codegen/models/%s/%s.data" % gpu_model_tag,
                 phone_data_dir,
                 serialno)
        adb_push("codegen/models/%s/%s.data" % dsp_model_tag,
                 phone_data_dir,
                 serialno)
    adb_push("mace/core/runtime/hexagon/libhexagon_controller.so",
             phone_data_dir,
             serialno)

    p = sh.adb(
            "-s",
            serialno,
            "shell",
            "LD_LIBRARY_PATH=%s" % phone_data_dir,
            "MACE_CPP_MIN_VLOG_LEVEL=%s" % vlog_level,
            "MACE_RUN_PARAMETER_PATH=%s/mace_run.config" %
            phone_data_dir,
            "%s/model_throughput_test" % phone_data_dir,
            "--input_node=%s" % ",".join(input_nodes),
            "--output_node=%s" % ",".join(output_nodes),
            "--input_shape=%s" % ":".join(input_shapes),
            "--output_shape=%s" % ":".join(output_shapes),
            "--input_file=%s/%s" % (phone_data_dir, input_file_name),
            "--cpu_model_data_file=%s/%s.data" % (phone_data_dir,
                                                  cpu_model_tag),
            "--gpu_model_data_file=%s/%s.data" % (phone_data_dir,
                                                  gpu_model_tag),
            "--dsp_model_data_file=%s/%s.data" % (phone_data_dir,
                                                  dsp_model_tag),
            "--run_seconds=%s" % run_seconds,
            _out=process_output,
            _bg=True,
            _err_to_out=True)
    p.wait()

    print("throughput_test done!\n")


1024 1025 1026
################################
# falcon
################################
L
Liangliang He 已提交
1027
def falcon_tags(tags_dict):
L
Liangliang He 已提交
1028 1029 1030 1031 1032 1033 1034
    tags = ""
    for k, v in tags_dict.iteritems():
        if tags == "":
            tags = "%s=%s" % (k, v)
        else:
            tags = tags + ",%s=%s" % (k, v)
    return tags
L
Liangliang He 已提交
1035

1036

L
Liangliang He 已提交
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
def falcon_push_metrics(metrics, endpoint="mace_dev", tags={}):
    cli = falcon_cli.FalconCli.connect(
        server="transfer.falcon.miliao.srv", port=8433, debug=False)
    ts = int(time.time())
    falcon_metrics = [{
        "endpoint": endpoint,
        "metric": key,
        "tags": falcon_tags(tags),
        "timestamp": ts,
        "value": value,
        "step": 86400,
        "counterType": "GAUGE"
    } for key, value in metrics.iteritems()]
    cli.update(falcon_metrics)