/external/tensorflow/ |
D | .bazelrc | 2 # This file tries to group and simplify build options for TensorFlow 4 # ----CONFIG OPTIONS---- 25 # c++17: Build with C++17 options (links with libc++) 26 # c++1z: Build with C++17 options (links with libc++) 27 # c++17_gcc: Build with C++17 options (links with stdlibc++) 28 # c++1z_gcc: Build with C++17 options (links with stdlibc++) 29 # avx_linux: Build with avx instruction set on linux. 30 # avx2_linux: Build with avx2 instruction set on linux. 31 # native_arch_linux: Build with instruction sets available to the host machine on linux 32 # avx_win: Build with avx instruction set on windows [all …]
|
/external/tflite-support/ |
D | .bazelrc | 6 build --apple_platform_type=macos 8 # Enable using platform specific build settings 9 build --enable_platform_specific_config 12 common --experimental_repo_remote_exec 15 build --java_toolchain=//third_party/toolchains/java:tf_java_toolchain 16 build --host_java_toolchain=//third_party/toolchains/java:tf_java_toolchain 18 # Suppress C++ compiler warnings, otherwise build logs become 10s of MBs. 19 build:android --copt=-w 20 build:linux --copt=-w 21 build:macos --copt=-w [all …]
|
/external/rust/crates/grpcio-sys/grpc/tools/ |
D | bazel.rc | 3 build --client_env=CC=clang 4 build --copt=-DGRPC_BAZEL_BUILD 5 build --action_env=GRPC_BAZEL_RUNTIME=1 6 build --define=use_fast_cpp_protos=true 8 build:opt --compilation_mode=opt 9 build:opt --copt=-Wframe-larger-than=16384 11 build:dbg --compilation_mode=dbg 12 build:dbg --copt=-Werror=return-stack-address 14 build:windows_opt --compilation_mode=opt 15 build:windows_dbg --compilation_mode=dbg [all …]
|
/external/grpc-grpc/tools/ |
D | bazel.rc | 1 build --client_env=CC=clang 2 build --copt -DGRPC_BAZEL_BUILD 4 build:opt --copt -Wframe-larger-than=16384 6 build:asan --strip=never 7 build:asan --copt -fsanitize-coverage=edge 8 build:asan --copt -fsanitize=address 9 build:asan --copt -O0 10 build:asan --copt -fno-omit-frame-pointer 11 build:asan --copt -DGPR_NO_DIRECT_SYSCALLS 12 build:asan --linkopt -fsanitize=address [all …]
|
/external/FP16/ |
D | configure.py | 6 parser.add_argument("--compare", dest="compare", action="store_true", 7 help="Enable performance comparison with other half-precision implementations") 11 build = confu.Build.from_options(options) 13 build.export_cpath("include", ["fp16.h"]) 15 …with build.options(source_dir="test", extra_include_dirs="test", deps=[build.deps.googletest, buil… 16 fp16_tables = build.cxx("tables.cc") 17 build.unittest("ieee-to-fp32-bits", 18 [build.cxx("ieee-to-fp32-bits.cc"), fp16_tables]) 19 build.unittest("ieee-to-fp32-value", 20 [build.cxx("ieee-to-fp32-value.cc"), fp16_tables]) [all …]
|
/external/skia/infra/bots/recipe_modules/build/examples/ |
D | full.py | 2 # Use of this source code is governed by a BSD-style license that can be 8 'build', 23 api.build(checkout_root=checkout_root, out_dir=out_dir) 25 api.build.copy_build_products(out_dir=out_dir, dst=dst) 30 'Build-Debian9-Clang-arm-Release-Flutter_Android_Docker', 31 'Build-Debian10-GCC-x86-Debug-Docker', 32 'Build-Debian10-GCC-x86_64-Debug-Docker', 33 'Build-Debian10-GCC-x86_64-Release-NoGPU_Docker', 34 'Build-Debian10-GCC-x86_64-Release-Shared_Docker', 35 'Build-Debian10-Clang-arm-Release-Android_API26', [all …]
|
/external/igt-gpu-tools/ |
D | .gitlab-ci.yml | 1 image: $CI_REGISTRY/$CI_PROJECT_PATH/igt-fedora:latest 4 -Dlibdrm_drivers=intel,nouveau,amdgpu 5 -Doverlay=enabled 6 -Dchamelium=enabled 7 -Dvalgrind=enabled 8 -Dman=enabled 9 -Dtests=enabled 10 -Drunner=enabled 11 -Dlibunwind=enabled 12 LANG: "C.UTF-8" [all …]
|
/external/jsr330/ |
D | build.sh | 4 # Clear and recreate build directory. 5 rm -r build 6 mkdir -p build/classes 7 mkdir -p build/tck 8 mkdir -p build/dist 9 mkdir -p build/tck/classes 10 mkdir -p build/tck/dist 13 javac -g -d build/classes `find src -name *.java` 14 javac -g -classpath build/classes:lib/junit.jar -d build/tck/classes \ 15 `find tck -name *.java` [all …]
|
/external/XNNPACK/ |
D | .bazelrc | 1 # Basic build settings 2 build --jobs 128 5 build --apple_platform_type=macos 8 build:android --crosstool_top=//external:android/crosstool 9 build:android --host_crosstool_top=@bazel_tools//tools/cpp:toolchain 10 build:android --linkopt=-ldl 11 build:android --linkopt=-Wl,--gc-sections 13 build:android_arm --config=android 14 build:android_arm --cpu=armeabi-v7a 15 build:android_arm --fat_apk_cpu=armeabi-v7a [all …]
|
/external/cpuinfo/ |
D | configure.py | 6 parser.add_argument("--log", dest="log_level", 8 parser.add_argument("--mock", dest="mock", action="store_true") 13 build = confu.Build.from_options(options) 20 if build.target.is_linux or build.target.is_android: 23 build.export_cpath("include", ["cpuinfo.h"]) 25 …with build.options(source_dir="src", macros=macros, extra_include_dirs="src", deps=build.deps.clog… 27 if build.target.is_x86 or build.target.is_x86_64: 33 if build.target.is_macos: 35 elif build.target.is_linux or build.target.is_android: 40 if build.target.is_arm or build.target.is_arm64: [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_builder.h | 2 * Copyright © 2014-2015 Broadcom 48 nir_builder_init(nir_builder *build, nir_function_impl *impl) in nir_builder_init() argument 50 memset(build, 0, sizeof(*build)); in nir_builder_init() 51 build->exact = false; in nir_builder_init() 52 build->impl = impl; in nir_builder_init() 53 build->shader = impl->function->shader; in nir_builder_init() 57 nir_builder_init_simple_shader(nir_builder *build, void *mem_ctx, in nir_builder_init_simple_shader() argument 61 memset(build, 0, sizeof(*build)); in nir_builder_init_simple_shader() 62 build->shader = nir_shader_create(mem_ctx, stage, options, NULL); in nir_builder_init_simple_shader() 63 nir_function *func = nir_function_create(build->shader, "main"); in nir_builder_init_simple_shader() [all …]
|
/external/python/pybind11/.github/workflows/ |
D | ci.yml | 8 - master 9 - stable 10 - v* 17 fail-fast: false 19 runs-on: [ubuntu-latest, windows-latest, macos-latest] 21 - 2.7 22 - 3.5 23 - 3.6 24 - 3.9 25 # - 3.10-dev # Re-enable once 3.10.0a5 is released [all …]
|
/external/skia/modules/canvaskit/ |
D | Makefile | 2 - rm -rf ../../out/canvaskit_wasm 3 - rm -rf ./npm_build/bin 4 - rm -rf ./build/ 8 # Does an incremental build where possible. 10 - rm -rf build/ 11 mkdir build 12 cp ../../out/canvaskit_wasm/canvaskit.js ./build/ 13 cp ../../out/canvaskit_wasm/canvaskit.wasm ./build/ 16 # Does an incremental build where possible. 18 - rm -rf build/ [all …]
|
/external/python/cpython3/Doc/ |
D | Makefile | 9 SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build 14 SPHINXERRORHANDLING = -W 17 PAPEROPT_a4 = -D latex_elements.papersize=a4paper 18 PAPEROPT_letter = -D latex_elements.papersize=letterpaper 20 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) \ 21 $(SPHINXOPTS) $(SPHINXERRORHANDLING) . build/$(BUILDER) $(SOURCES) 23 .PHONY: help build html htmlhelp latex text texinfo changes linkcheck \ 24 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \ 25 autobuild-dev autobuild-stable venv 29 @echo " clean to remove build files" [all …]
|
/external/python/cpython2/Doc/ |
D | Makefile | 8 SPHINXBUILD = sphinx-build 13 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_elements.papersize=$(PAPER) \ 14 $(SPHINXOPTS) . build/$(BUILDER) $(SOURCES) 16 .PHONY: help build html htmlhelp latex text changes linkcheck \ 17 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \ 18 autobuild-dev autobuild-stable 22 @echo " clean to remove build files" 33 @echo " pydoc-topics to regenerate the pydoc topics file" 39 build: target 44 html: build [all …]
|
/external/python/cpython3/PCbuild/ |
D | pcbuild.sln | 5 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{553EC33E-… 11 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python", "python.vcxproj", "{B11D750F-CD1F-4A9… 13 {0E9791DB-593A-465F-98BC-681011311618} = {0E9791DB-593A-465F-98BC-681011311618} 16 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcxproj", "{CF7AC3D1-… 18 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythonw", "pythonw.vcxproj", "{F4229CC3-873C-4… 20 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcxproj", "{28B5D777-DDF2… 22 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_decimal", "_decimal.vcxproj", "{0E9791DB-593A… 24 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes", "_ctypes.vcxproj", "{0E9791DB-593A-4… 26 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_ctypes_test", "_ctypes_test.vcxproj", "{9EC71… 28 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_elementtree", "_elementtree.vcxproj", "{17E1E… [all …]
|
/external/libdrm/ |
D | .gitlab-ci.yml | 1 # This is the tag of the docker image used for the build jobs. If the 8 # versions of gcc/clang or other packages, which might break the build 18 - project: 'freedesktop/ci-templates' 21 - '/templates/debian.yml' 22 - '/templates/freebsd.yml' 23 - '/templates/ci-fairy.yml' 30 - "Base container" 31 - "Build" 33 .ci-rules: 35 - when: on_success [all …]
|
/external/webrtc/android_tools/ |
D | sorted_targets.txt | 5 "-T" 8 "-fPIC", 9 "-fno-strict-aliasing", 10 "--param=ssp-buffer-size=4", 11 "-fstack-protector", 12 "-funwind-tables", 13 "-fPIC", 14 "-B../src/third_party/binutils/Linux_x64/Release/bin", 15 "-pthread", 16 "-fcolor-diagnostics", [all …]
|
D | selected_targets.json | 5 "-T" 8 "-fPIC", 9 "-fno-strict-aliasing", 10 "--param=ssp-buffer-size=4", 11 "-fstack-protector", 12 "-funwind-tables", 13 "-fPIC", 14 "-pthread", 15 "-fcolor-diagnostics", 16 "-fmerge-all-constants", [all …]
|
/external/freetype/ |
D | .gitlab-ci.yml | 2 - build 4 # FIXME: Use --werror once warnings are fixed. 6 MESON_ARGS: --fatal-meson-warnings 7 MESON_ARGS_WINDOWS: ${MESON_ARGS} --force-fallback-for=zlib 9 .build windows common: 11 # https://gitlab.freedesktop.org/gstreamer/gst-ci/container_registry/213 12 image: 'registry.freedesktop.org/gstreamer/gst-ci/amd64/windows:v14-master' 13 stage: 'build' 15 - 'docker' 16 - 'windows' [all …]
|
/external/vulkan-validation-layers/ |
D | BUILD.md | 1 # Build Instructions 8 1. [Contributing](#contributing-to-the-repository) 9 1. [Repository Content](#repository-content) 10 1. [Repository Set-Up](#repository-set-up) 11 1. [Windows Build](#building-on-windows) 12 1. [Linux Build](#building-on-linux) 13 1. [Android Build](#building-on-android) 14 1. [MacOS build](#building-on-macos) 25 This repository contains the source code necessary to build the Vulkan 33 - *install_dir*`/lib` : The Vulkan validation layer libraries [all …]
|
/external/rust/crates/grpcio-sys/grpc/tools/remote_build/ |
D | windows.bazelrc | 1 startup --host_jvm_args=-Dbazel.DigestFunction=SHA256 3 build --remote_cache=grpcs://remotebuildexecution.googleapis.com 4 build --remote_executor=grpcs://remotebuildexecution.googleapis.com 6 build --auth_enabled=true 8 build --host_crosstool_top=//third_party/toolchains/bazel_0.26.0_rbe_windows:toolchain 9 build --crosstool_top=//third_party/toolchains/bazel_0.26.0_rbe_windows:toolchain 10 build --extra_toolchains=//third_party/toolchains/bazel_0.26.0_rbe_windows:cc-toolchain-x64_windows 12 build --extra_execution_platforms=//third_party/toolchains:rbe_windows 13 build --host_platform=//third_party/toolchains:rbe_windows 14 build --platforms=//third_party/toolchains:rbe_windows [all …]
|
/external/python/cpython2/Tools/unicode/ |
D | Makefile | 5 #(c) Copyright Marc-Andre Lemburg, 2005. 18 codecs: misc windows iso apple ebcdic custom-mappings cjk 23 ncftpget -R ftp.unicode.org . Public/MAPPINGS 27 build/: 28 mkdir build 30 misc: build/ 31 $(PYTHON) gencodec.py MAPPINGS/VENDORS/MISC/ build/ 32 $(RM) build/atarist.* 33 $(RM) build/us_ascii_quotes.* 34 $(RM) build/ibmgraph.* [all …]
|
/external/python/cpython3/Tools/unicode/ |
D | Makefile | 5 #(c) Copyright Marc-Andre Lemburg, 2005. 18 codecs: misc windows iso apple ebcdic custom-mappings cjk 23 ncftpget -R ftp.unicode.org . Public/MAPPINGS 27 build/: 28 mkdir build 30 misc: build/ 31 $(PYTHON) gencodec.py MAPPINGS/VENDORS/MISC/ build/ 32 $(RM) build/atarist.* 33 $(RM) build/us_ascii_quotes.* 34 $(RM) build/ibmgraph.* [all …]
|
/external/angle/third_party/vulkan-deps/vulkan-headers/src/ |
D | BUILD.md | 1 # Build Instructions 7 1. [Contributing](#contributing-to-the-repository) 8 1. [Repository Content](#repository-content) 9 1. [Repository Set-up](#repository-set-up) 10 1. [Windows Build](#building-on-windows) 11 1. [Linux Build](#building-on-linux) 12 1. [MacOS Build](#building-on-macos) 17 API specification [repository](https://github.com/KhronosGroup/Vulkan-Docs). 26 However, this repository contains CMake build configuration files to "install" 30 If you are building other Vulkan-related repositories such as [all …]
|