Home
last modified time | relevance | path

Searched full:build_tool (Results 1 – 15 of 15) sorted by relevance

/aosp_15_r20/external/executorch/.github/workflows/
H A Dpull.yml50 BUILD_TOOL="cmake"
52 PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}"
54 PYTHON_EXECUTABLE=python bash .ci/scripts/test_model.sh "add" "${BUILD_TOOL}" "portable"
75 BUILD_TOOL=${{ matrix.build-tool }}
79 PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}"
81 …PYTHON_EXECUTABLE=python bash .ci/scripts/test_model.sh "${MODEL_NAME}" "${BUILD_TOOL}" "${BACKEND…
110 BUILD_TOOL="cmake"
116 PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}"
120 …TABLE=python bash .ci/scripts/test_llama.sh -model stories110M -build_tool "${BUILD_TOOL}" -dtype …
138 BUILD_TOOL="cmake"
[all …]
H A Dtrunk.yml54 BUILD_TOOL=${{ matrix.build-tool }}
60 PYTHON_EXECUTABLE=python ${CONDA_RUN} bash .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
62 …=python ${CONDA_RUN} bash .ci/scripts/test_model.sh "${MODEL_NAME}" "${BUILD_TOOL}" "${BACKEND}" "…
78 BUILD_TOOL=${{ matrix.build-tool }}
82 PYTHON_EXECUTABLE=python ${CONDA_RUN} bash .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
84 …EXECUTABLE=python ${CONDA_RUN} bash examples/portable/custom_ops/test_custom_ops.sh "${BUILD_TOOL}"
100 BUILD_TOOL=${{ matrix.build-tool }}
104 PYTHON_EXECUTABLE=python ${CONDA_RUN} bash .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
106 …XECUTABLE=python ${CONDA_RUN} bash examples/selective_build/test_selective_build.sh "${BUILD_TOOL}"
127 BUILD_TOOL=${{ matrix.build-tool }}
[all …]
H A Dapple.yml58 BUILD_TOOL=cmake
70 .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
144 BUILD_TOOL=cmake
161 .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
297 BUILD_TOOL=cmake
300 .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
H A Dperiodic.yml59 BUILD_TOOL=${{ matrix.build-tool }}
63 PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}"
65 …PYTHON_EXECUTABLE=python bash .ci/scripts/test_model.sh "${MODEL_NAME}" "${BUILD_TOOL}" "${BACKEND…
H A Dapple-perf.yml140 BUILD_TOOL=cmake
143 .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
203 BUILD_TOOL=cmake
206 .ci/scripts/setup-macos.sh "${BUILD_TOOL}"
H A Ddoc-build.yml36 BUILD_TOOL=${{ matrix.build-tool }}
38 PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}"
/aosp_15_r20/external/chromium-trace/catapult/devil/devil/android/sdk/
H A Dbuild_tools.py14 def GetPath(build_tool): argument
16 return devil_env.config.LocalPath(build_tool)
21 return _PathInLocalSdk(build_tool)
25 return devil_env.config.FetchPath(build_tool)
28 def _PathInLocalSdk(build_tool): argument
31 raise dependency_manager.NoPathFoundError(build_tool,
34 candidate_path = os.path.join(build_tools_path, build_tool)
36 raise dependency_manager.NoPathFoundError(build_tool,
/aosp_15_r20/external/executorch/.ci/scripts/
H A Dtest_model.sh19 BUILD_TOOL=$2
20 if [[ -z "${BUILD_TOOL:-}" ]]; then
64 if [[ "${BUILD_TOOL}" == "buck2" ]]; then
66 elif [[ "${BUILD_TOOL}" == "cmake" ]]; then
70 echo "Invalid build tool ${BUILD_TOOL}. Only buck2 and cmake are supported atm"
121 bash examples/xnnpack/quantization/test_quantize.sh "${BUILD_TOOL}" "${MODEL_NAME}"
138 if [[ "${BUILD_TOOL}" == "buck2" ]]; then
140 elif [[ "${BUILD_TOOL}" == "cmake" ]]; then
146 echo "Invalid build tool ${BUILD_TOOL}. Only buck2 and cmake are supported atm"
183 if [[ "${BUILD_TOOL}" == "buck2" ]]; then
H A Dtest_llama.sh18 -build_tool)
19 BUILD_TOOL="$2" # buck2 or cmake
56 if [[ -z "${BUILD_TOOL:-}" ]]; then
249 if [[ "${BUILD_TOOL}" == "buck2" ]]; then
253 elif [[ "${BUILD_TOOL}" == "cmake" ]]; then
264 echo "Invalid build tool ${BUILD_TOOL}. Only buck2 is supported atm"
H A Dsetup-linux.sh13 BUILD_TOOL=$1
14 if [[ -z "${BUILD_TOOL:-}" ]]; then
18 echo "Setup Linux for ${BUILD_TOOL} ..."
25 build_executorch_runner "${BUILD_TOOL}"
H A Dsetup-macos.sh13 BUILD_TOOL=$1
14 if [[ -z "${BUILD_TOOL:-}" ]]; then
18 echo "Setup MacOS for ${BUILD_TOOL} ..."
132 build_executorch_runner "${BUILD_TOOL}"
/aosp_15_r20/external/executorch/examples/portable/scripts/
H A Dtest_demo_backend_delegation.sh12 BUILD_TOOL=$1
13 if [[ -z "${BUILD_TOOL:-}" ]]; then
37 if [[ "${BUILD_TOOL}" == "buck2" ]]; then
41 elif [[ "${BUILD_TOOL}" == "cmake" ]]; then
49 echo "Invalid build tool ${BUILD_TOOL}. Only buck2 and cmake are supported atm"
/aosp_15_r20/external/jsoncpp/.travis_scripts/
H A Dcmake_builder.sh14 # - BUILD_TOOL=["Unix Makefile"|"Ninja"]
91 if ${BUILD_TOOL+false}; then
92 BUILD_TOOL="Ninja"
109 -G "${BUILD_TOOL}" \
/aosp_15_r20/external/jsoncpp/
H A D.travis.yml61 BUILD_TOOL="Unix Makefiles"
/aosp_15_r20/external/executorch/extension/android_test/
H A Dsetup.sh57 source ".ci/scripts/test_llama.sh" -model stories110M -build_tool cmake -dtype fp16 -mode portable …