/aosp_15_r20/external/intel-media-driver/.github/workflows/ |
H A D | ubuntu.yml | 6 _CFLAGS: -O2 -Wformat -Wformat-security -Wall -Werror -D_FORTIFY_SOURCE=2 -fstack-protector-strong 8 permissions: read-all 12 runs-on: ubuntu-20.04 14 CC: /usr/bin/clang-14 15 CXX: /usr/bin/clang++-14 16 ASM: /usr/bin/clang-14 18 - name: checkout media-driver 22 - name: checkout libva 27 - name: checkout gmmlib 32 - name: install toolchain [all …]
|
/aosp_15_r20/external/grpc-grpc/test/distrib/cpp/ |
H A D | run_distrib_test_cmake_for_dll.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 18 @rem TODO(jtattermusch): Kokoro has pre-installed protoc.exe in C:\Program Files\ProtoC and that di… 19 …TH. To avoid picking up the older version protoc.exe, we change the path to something non-existent. 25 @rem Download OpenSSL-Win32 originally installed from https://slproweb.com/products/Win32OpenSSL.ht… 26 …hell -Command "(New-Object Net.WebClient).DownloadFile('https://storage.googleapis.com/grpc-testin… 27 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.… 30 set OPENSSL_DIR=%cd:\=/%/OpenSSL-Win32 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. [all …]
|
H A D | run_distrib_test_cmake.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 18 @rem TODO(jtattermusch): Kokoro has pre-installed protoc.exe in C:\Program Files\ProtoC and that di… 19 …TH. To avoid picking up the older version protoc.exe, we change the path to something non-existent. 25 @rem Download OpenSSL-Win32 originally installed from https://slproweb.com/products/Win32OpenSSL.ht… 26 …hell -Command "(New-Object Net.WebClient).DownloadFile('https://storage.googleapis.com/grpc-testin… 27 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.… 30 set OPENSSL_DIR=%cd:\=/%/OpenSSL-Win32 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/test/distrib/cpp/ |
D | run_distrib_test_cmake.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 18 @rem TODO(jtattermusch): Kokoro has pre-installed protoc.exe in C:\Program Files\ProtoC and that di… 19 …TH. To avoid picking up the older version protoc.exe, we change the path to something non-existent. 25 @rem Download OpenSSL-Win32 originally installed from https://slproweb.com/products/Win32OpenSSL.ht… 26 …hell -Command "(New-Object Net.WebClient).DownloadFile('https://storage.googleapis.com/grpc-testin… 27 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.… 30 set OPENSSL_DIR=%cd:\=/%/OpenSSL-Win32 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. [all …]
|
/aosp_15_r20/external/grpc-grpc/examples/cpp/helloworld/cmake_externalproject/ |
H A D | CMakeLists.txt | 7 # http://www.apache.org/licenses/LICENSE-2.0 19 # cmake's ExternalProject_Add() is used to import all the sub-projects, 21 # See https://blog.kitware.com/cmake-superbuilds-git-submodules/ 26 project(HelloWorld-SuperBuild C CXX) 30 # Note: For all external projects, instead of using checked-out code, one could 37 SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../../../third_party/abseil-cpp" 39 -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=TRUE 40 -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_CURRENT_BINARY_DIR}/absl 48 -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=TRUE 49 -Dutf8_range_ENABLE_TESTS:BOOL=OFF [all …]
|
/aosp_15_r20/external/grpc-grpc/tools/run_tests/helper_scripts/ |
H A D | build_cxx.bat | 7 @rem http://www.apache.org/licenses/LICENSE-2.0 46 @rem A new-enough Windows 10 SDK that supports C++11's stdalign.h is required 54 @rem See b/275694647 and https://gitlab.kitware.com/cmake/cmake/-/issues/16202#note_140259 55 set "CMAKE_SYSTEM_VERSION_ARG=-DCMAKE_SYSTEM_VERSION=10.0" 60 set "CMAKE_SYSTEM_VERSION_ARG=-DCMAKE_SYSTEM_VERSION=10.0" 68 @rem Install abseil-cpp since opentelemetry CMake uses find_package to find it. 69 cd third_party/abseil-cpp 72 …-G "%GRPC_CMAKE_GENERATOR%" -DCMAKE_C_COMPILER="cl.exe" -DCMAKE_CXX_COMPILER="cl.exe" -DABSL_BUILD… 73 ninja -j%GRPC_RUN_TESTS_JOBS% install || goto :error 75 @rem Install opentelemetry-cpp since we only support "package" mode for opentelemetry at present. [all …]
|
H A D | build_cxx.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 20 mkdir -p cmake/install 23 # Install abseil-cpp since opentelemetry CMake uses find_package to find it. 24 cd third_party/abseil-cpp 27 cmake -DCMAKE_CXX_STANDARD=14 -DABSL_BUILD_TESTING=OFF -DCMAKE_BUILD_TYPE="${MSBUILD_CONFIG}" -DCMA… 28 make -j"${GRPC_RUN_TESTS_JOBS}" install 30 # Install opentelemetry-cpp since we only support "package" mode for opentelemetry at present. 32 cd third_party/opentelemetry-cpp 35 …make -DCMAKE_CXX_STANDARD=14 -DWITH_ABSEIL=ON -DBUILD_TESTING=OFF -DWITH_BENCHMARK=OFF -DCMAKE_BUI… [all …]
|
/aosp_15_r20/external/protobuf/cmake/ |
H A D | README.md | 6 and optionally [Git](http://git-scm.com) installed on your computer before proceeding. 39 Optionally, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* v… 52 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if 53 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package 55 download `protobuf-all-[VERSION].tar.gz`. 60 C:\Path\to\src> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git 62 Where *[release_tag]* is a git tag like *v3.0.0-beta-1* or a branch name like *main* 74 C:\Path\to\src\protobuf> git submodule update --init --recursive 83 [generators](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html) 88 * [Makefile](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#makefile-generat… [all …]
|
/aosp_15_r20/external/cronet/third_party/protobuf/cmake/ |
H A D | README.md | 6 and optionally [Git](http://git-scm.com) installed on your computer before proceeding. 39 Optionally, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* v… 52 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if 53 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package 55 download `protobuf-all-[VERSION].tar.gz`. 60 C:\Path\to\src> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git 62 Where *[release_tag]* is a git tag like *v3.0.0-beta-1* or a branch name like *main* 74 C:\Path\to\src\protobuf> git submodule update --init --recursive 83 [generators](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html) 88 * [Makefile](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#makefile-generat… [all …]
|
/aosp_15_r20/external/libwebsockets/READMEs/ |
H A D | README.build.md | 8 ./bootstrap-vcpkg.sh 16 CMake is a multi-platform build tool that can generate build files for many 19 CMake also allows/recommends you to do "out of source"-builds, that is, 27 - Windows (Visual Studio) 28 - Windows (MinGW) 29 - Linux (x86 and ARM) 30 - OSX 31 - NetBSD 71 as --prefix= with autotools. It defaults to /usr/local. 74 $ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr . [all …]
|
/aosp_15_r20/packages/modules/Virtualization/build/debian/ttyd/ |
D | cross-build.sh | 4 # env BUILD_TARGET=mips ./scripts/cross-build.sh 6 set -eo pipefail 8 CROSS_ROOT="${CROSS_ROOT:-/tmp/cross}" 9 STAGE_ROOT="${STAGE_ROOT:-/tmp/stage}" 10 BUILD_ROOT="${BUILD_ROOT:-/tmp/build}" 11 BUILD_TARGET="${BUILD_TARGET:-x86_64}" 13 ZLIB_VERSION="${ZLIB_VERSION:-1.3.1}" 14 JSON_C_VERSION="${JSON_C_VERSION:-0.17}" 15 MBEDTLS_VERSION="${MBEDTLS_VERSION:-2.28.5}" 16 LIBUV_VERSION="${LIBUV_VERSION:-1.44.2}" [all …]
|
/aosp_15_r20/external/executorch/examples/demo-apps/android/ExecuTorchDemo/ |
H A D | README.md | 3 This is forked from [PyTorch Android Demo App](https://github.com/pytorch/android-demo-app). 5 …els are exported to ExecuTorch using [XNNPACK FP32 backend](tutorial-xnnpack-delegate-lowering.md). 8 :::{grid-item-card} What you will learn 9 :class-card: card-prerequisites 10 * How to set up a build target for Android arm64-v8a 15 :::{grid-item-card} Prerequisites 16 :class-card: card-prerequisites 17 * Refer to [Setting up ExecuTorch](https://pytorch.org/executorch/stable/getting-started-setup) to … 20 …Qualcomm AI Engine Direct Backend](build-run-qualcomm-ai-engine-direct-backend.md) for hardware an… 27 This demo app and tutorial has only been validated with arm64-v8a [ABI](https://developer.android.c… [all …]
|
/aosp_15_r20/external/executorch/backends/cadence/ |
H A D | build_cadence_xtensa.sh | 5 # This source code is licensed under the BSD-style license found in the 8 set -euo pipefail 12 git submodule update --init 15 rm -rf cmake-out 21 cmake -DCMAKE_INSTALL_PREFIX=cmake-out \ 22 -DCMAKE_TOOLCHAIN_FILE=./backends/cadence/cadence.cmake \ 23 -DCMAKE_BUILD_TYPE=Release \ 24 -DEXECUTORCH_ENABLE_EVENT_TRACER=OFF \ 25 -DEXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL=ON \ 26 -DEXECUTORCH_BUILD_EXECUTOR_RUNNER=OFF \ [all …]
|
/aosp_15_r20/external/llvm/tools/xcode-toolchain/ |
H A D | CMakeLists.txt | 6 # toolchain. Xcode toolchains are a mostly-undocumented feature that allows 17 # This file generates a custom install-xcode-toolchain target which constructs 24 # cmake -G Ninja -DLLVM_CREATE_XCODE_TOOLCHAIN=On 25 # -DCMAKE_INSTALL_PREFIX=$PWD/install 26 # ninja install-xcode-toolchain 30 # `xcrun -find clang` should return the installed clang, and `clang --version` 44 COMMAND xcrun -find otool 59 COMMAND ${CMAKE_COMMAND} -E make_directory ${LLVMToolchainDir}) 63 … COMMAND ${CMAKE_COMMAND} -E copy "${XcodeDefaultInfo}" "${LLVMToolchainDir}/ToolchainInfo.plist" 64 …COMMAND /usr/libexec/PlistBuddy -c "Set:Identifier org.llvm.${PACKAGE_VERSION}" "${LLVMToolchainDi… [all …]
|
/aosp_15_r20/external/intel-media-driver/ |
H A D | .travis.yml | 6 - docker 8 - cd .. 9 - git clone https://github.com/intel/gmmlib.git gmmlib 10 - git clone https://github.com/intel/libva.git libva 11 - cd ./media-driver 14 - rm -rf ${TRAVIS_BUILD_DIR}/../build && mkdir ${TRAVIS_BUILD_DIR}/../build 15 - mkdir -p $HOME/.ccache 16 - ccache -s 17 - ccache -z 18 - > [all …]
|
/aosp_15_r20/external/executorch/test/ |
H A D | run_oss_cpp_tests.sh | 5 # This source code is licensed under the BSD-style license found in the 9 # It builds and installs the root ExecuTorch package, and then sub-directories. 11 # If no arg is given, it probes all sub-directories containing 15 set -ex 18 export LLVM_PROFDATA="${LLVM_PROFDATA:-xcrun llvm-profdata}" 19 export LLVM_COV="${LLVM_COV:-xcrun llvm-cov}" 21 export LLVM_PROFDATA="${LLVM_PROFDATA:-llvm-profdata}" 22 export LLVM_COV="${LLVM_COV:-llvm-cov}" 27 if [ -x "$(command -v glslc)" ]; then 31 -DCMAKE_INSTALL_PREFIX=cmake-out \ [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/cares/cares/ |
D | INSTALL.md | 1 ** This file is adapted from libcurl and not yet fully rewritten for c-ares! ** 15 Lots of people download binary distributions of c-ares. This document 16 does not describe how to install c-ares using such a binary package. 17 This document describes how to compile, build and install c-ares from 24 release tarball, see the [GIT-INFO](GIT-INFO) file in the root directory 47 [GIT-INFO](GIT_INFO) on how to proceed. 51 ./configure --help 53 If you want to install c-ares in a different file hierarchy than /usr/local, 56 ./configure --prefix=/path/to/c-ares/tree 62 ./configure --prefix=$HOME [all …]
|
/aosp_15_r20/external/executorch/examples/selective_build/ |
H A D | test_selective_build.sh | 5 # This source code is licensed under the BSD-style license found in the 8 # Test the end-to-end flow of selective build, using 3 APIs: 13 set -e 20 # 1. `--config executorch.select_ops=all`: select all ops from the dependency 22 # 2. `--config executorch.select_ops=list`: Only select ops from `ops` kwarg 24 # 3. `--config executorch.select_ops=yaml`: Only select from a yaml file from 26 # 4. `--config executorch.select_ops=dict`: Only select ops from `ops_dict` 31 # - `--config executorch.max_kernel_num=N`: Only allocate memory for the 36 ${PYTHON_EXECUTABLE} -m examples.portable.scripts.export --model_name="mv3" 40 --config=executorch.select_ops=all -- --model_path=./mv3.pte [all …]
|
/aosp_15_r20/external/mesa3d/.gitlab-ci/windows/ |
H A D | mesa_deps_build.ps1 | 2 $MyPath = $MyInvocation.MyCommand.Path | Split-Path -Parent 7 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityP… 9 Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "deps" | Out-Null 11 $depsInstallPath="C:\mesa-deps" 13 Get-Date 14 Write-Host "Cloning DirectX-Headers" 15 git clone -b v1.614.1 --depth=1 https://github.com/microsoft/DirectX-Headers deps/DirectX-Headers 17 Write-Host "Failed to clone DirectX-Headers repository" 20 Write-Host "Building DirectX-Headers" 21 $dxheaders_build = New-Item -ItemType Directory -Path ".\deps\DirectX-Headers" -Name "build" [all …]
|
/aosp_15_r20/external/angle/third_party/glslang/src/.github/workflows/ |
H A D | continuous_deployment.yml | 3 # Github github-script action: https://github.com/actions/github-script 5 # Octokit front-end to the GitHub REST API: https://octokit.github.io/rest.js/v18 6 # Octokit endpoint methods: https://github.com/octokit/plugin-rest-endpoint-methods.js/tree/master/… 8 # TODO: Use actions/upload-artifact and actions/download-artifact to simplify deployment. 17 - main 18 paths-ignore: 19 - 'README.md' 20 - 'README-spirv-remap.txt' 21 - 'LICENSE.txt' 22 - 'CODE_OF_CONDUCT.md' [all …]
|
/aosp_15_r20/external/deqp-deps/glslang/.github/workflows/ |
D | continuous_deployment.yml | 3 # Github github-script action: https://github.com/actions/github-script 5 # Octokit front-end to the GitHub REST API: https://octokit.github.io/rest.js/v18 6 # Octokit endpoint methods: https://github.com/octokit/plugin-rest-endpoint-methods.js/tree/master/… 8 # TODO: Use actions/upload-artifact and actions/download-artifact to simplify deployment. 17 - main 18 paths-ignore: 19 - 'README.md' 20 - 'README-spirv-remap.txt' 21 - 'LICENSE.txt' 22 - 'CODE_OF_CONDUCT.md' [all …]
|
/aosp_15_r20/external/angle/third_party/glslang/src/ |
H A D | README.md | 11 3. A new CMake `ENABLE_SPIRV` option has been added to control whether glslang is built with SPIR-V… 19 ### Reference Validator and GLSL/ESSL -> AST Front End 21 An OpenGL GLSL and OpenGL|ES GLSL (ESSL) front-end for reference validation and translation of GLSL… 25 ### HLSL -> AST Front End 27 An HLSL front-end for translation of an approximation of HLSL to glslang's AST form. 30 … which receives a much larger investment and attempts to have definitive/reference-level semantics. 34 ### AST -> SPIR-V Back End 36 Translates glslang's AST to the Khronos-specified SPIR-V intermediate language. 42 …ion information from the AST, reflection types/variables/etc. from the HLL source (not the SPIR-V). 44 …ccurate for the input HLL and AST, but only approximate for what would later be emitted for SPIR-V. [all …]
|
/aosp_15_r20/external/executorch/kernels/ |
H A D | README.md | 6 - `kernels`: Contains implementations and tests for the operators defined 8 - `kernels/portable/cpu`: Pure C++ implementations of the operators defined in the 10 - `kernels/optimized/cpu`: Optimized C++ implementations of the operators defined in the 12 - `kernels/aten`: A thin wrapper layer to hookup ATen library into ExecuTorch. 13 - `kernels/test`: Tests for all operator implementations. Since all 30 - Make it straightforward to add new operator implementations. 31 - Ensure that the operator implementations are of high quality, and are easy to 33 - Make it easy for users to find available operator implementations, and to 48 The ExecuTorch types are source-compatible with the ATen/c10 types; if you write 60 - [`//kernels/portable/functions.yaml`](https://github.com/pytorch/executorch/blob/main/kernels/por… [all …]
|
/aosp_15_r20/external/deqp-deps/glslang/ |
D | README.md | 17 ### Reference Validator and GLSL/ESSL -> AST Front End 19 An OpenGL GLSL and OpenGL|ES GLSL (ESSL) front-end for reference validation and translation of GLSL… 23 ### HLSL -> AST Front End 25 An HLSL front-end for translation of an approximation of HLSL to glslang's AST form. 28 … which receives a much larger investment and attempts to have definitive/reference-level semantics. 32 ### AST -> SPIR-V Back End 34 Translates glslang's AST to the Khronos-specified SPIR-V intermediate language. 40 …ion information from the AST, reflection types/variables/etc. from the HLL source (not the SPIR-V). 42 …ccurate for the input HLL and AST, but only approximate for what would later be emitted for SPIR-V. 46 `glslang` is command-line tool for accessing the functionality above. [all …]
|
/aosp_15_r20/external/capstone/suite/cstest/ |
H A D | build_cstest.sh | 5 cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && make -j2 && sudo make install 7 cmake -DCMAKE_INSTALL_PREFIX=/usr .. && make -j2 && sudo make install
|