MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / make_args

Function make_args

tensorflow/lite/tools/pip_package/setup.py:70–81  ·  view source on GitHub ↗

Construct make command line.

(target='', quiet=True)

Source from the content-addressed store, hash-verified

68
69
70def make_args(target='', quiet=True):
71 """Construct make command line."""
72 args = (['make', 'SHELL=/bin/bash',
73 'BUILD_WITH_NNAPI=false', '-C', TENSORFLOW_DIR]
74 + MAKE_CROSS_OPTIONS +
75 ['-f', RELATIVE_MAKEFILE_PATH, '-j',
76 str(get_build_cpus())])
77 if quiet:
78 args.append('--quiet')
79 if target:
80 args.append(target)
81 return args
82
83
84def make_output(target):

Callers 2

make_outputFunction · 0.85
makeFunction · 0.85

Calls 2

get_build_cpusFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected