| /external/aws-sdk-java-v2/test/s3-benchmarks/ |
| D | README.md | 1 # S3 Benchmark Harness 10 mvn clean install -pl :s3-benchmarks -P quick --am 13 java -jar s3-benchmarks.jar --bucket=bucket --key=key -file=/path/to/destionfile/ --operation=downl… 16 java -jar s3-benchmarks.jar --bucket=bucket --key=key -file=/path/to/sourcefile/ --operation=upload… 22 mvn exec:exec -Dexec.executable="java" -Dexec.args="-cp %classpath software.amazon.awssdk.s3benchma… 29 The `--version` command line option is used to determine which component is under test: 31 - `--version=crt` : Indicate to run the benchmark for the CRT's S3Client 32 - `--version=java` : Indicate to run the benchmark for the java based S3 Async Client (`MultipartS3… 33 - `--version=v2`: SDK v2 transfer manager (using `S3CrtAsyncClient` to delegate requests) 34 - `--version=v1`: SDK v1 transfer manager (using `AmazonS3Client` to delegate requests) [all …]
|
| D | pom.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- 15 --> 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 21 <artifactId>aws-sdk-java-pom</artifactId> 28 <artifactId>s3-benchmarks</artifactId> 33 <sdk-v1.version>1.12.261</sdk-v1.version> 35 <name>AWS Java SDK :: Test :: S3 Benchmarks</name> 36 <description>Contains benchmark code for S3 and TransferManager</description> [all …]
|
| /external/aws-sdk-java-v2/buildspecs/ |
| D | release-javadoc.yml | 4 JAVA_HOME: "/usr/lib/jvm/java-21-amazon-corretto/" 8 - apt-get update; apt-get install -y java-21-amazon-corretto-jdk 9 - update-alternatives --auto javac 10 - update-alternatives --auto java 11 - pip install awscli==1.19.34 --upgrade --user 15 - DOC_PATH='s3://aws-java-sdk-javadoc/java/api' 19 …- python ./scripts/doc_crosslinks/generate_cross_link_data.py --apiDefinitionsBasePath ./services/… 20 - mvn install -P quick -T1C 21 …- mvn clean install javadoc:aggregate -B -Ppublic-javadoc -Dcheckstyle.skip -Dspotbugs.skip -Dskip… 22 …- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive … [all …]
|
| D | release-to-maven.yml | 6 - pip install awscli --upgrade --user 10 - ROOT=`pwd` 11 - SETTINGS_XML_TEMPLATE=buildspecs/resources/release-settings.xml 12 - SETTINGS_XML=release-settings-final.xml 13 - SDK_SIGNING_GPG_SECRING=secring.gpg 14 …- SDK_SIGNING_GPG_SECRING_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing-gp… 15 …- SDK_SIGNING_GPG_KEYNAME_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing-gp… 16 …- SDK_SIGNING_GPG_PASSPHRASE_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing… 17 …- SONATYPE_PASSWORD_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sonatype-password-I2… 21 …- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive … [all …]
|
| /external/aws-sdk-java-v2/test/s3-benchmarks/src/main/java/software/amazon/awssdk/s3benchmarks/s3express/ |
| D | S3BenchmarkRunner.java | 30 import software.amazon.awssdk.services.s3.S3AsyncClient; 31 import software.amazon.awssdk.services.s3.S3Client; 40 * - Add detailed metrics 41 * - Add more sophisticated support for test suites 42 * - Merge with existing benchmarking tests in this module 43 * - Dimensions: clients 44 * - Support checksumming 70 .overrideConfiguration(o -> o.addMetricPublisher( in runBenchmarks() 75 LOGGER.info(() -> "Running small objects benchmark, 64Kb data, 5 buckets, 200 iterations"); in runBenchmarks() 83 .az("use1-az5") in runBenchmarks() [all …]
|
| /external/aws-sdk-java-v2/test/s3-benchmarks/.scripts/ |
| D | benchmark-copy | 18 # Script for running multiple Transfer manager benchmarks at the same time 22 echo " benchmark-copy [<size>]" 24 echo " benchmark-copy" 25 echo " benchmark-copy 4GB" 28 sizes_str="1B 8MB-1 8MB+1 128MB 4GB 30GB 90GB" 33 echo "===== TM PERF TEST SUITE - COPY =====" 36 echo "Benchmark: $version - $size" 38 cmd="java -jar ../target/s3-benchmarks.jar \ 39 --readBufferInMB=3072 \ 40 --bucket=do-not-delete-crt-s3-eu-west-1 \ [all …]
|
| D | benchmark-dir | 18 # Script for running multiple Transfer manager benchmarks at the same time 22 echo " benchmark-dir download|upload fs|tmpfs|no-op [1B|4K|16M|5G]" 24 echo " ./benchmark-dir download fs" 25 echo " ./benchmark-dir upload tmpfs" 30 if [ -z "$1" ] || ([ "$1" != download ] && [ "$1" != upload ]); then 37 if [[ -z "$2" ]]; then 43 if ([ "$location_name" != fs ] && [ "$location_name" != tmpfs ] && [ "$location_name" != no-op ]); … 63 echo "Benchmark: $version - $size" 65 if [[ -z "$directory" ]]; then 66 mkdir -p "$directory" [all …]
|
| D | benchmark | 18 # Script for running multiple Transfer manager benchmarks at the same time 22 echo " benchmark download|upload fs|tmpfs|no-op [<size>]" 30 if [[ -z "$1" ]]; then 43 if [[ -z "$2" ]]; then 49 if ([ "$location_name" != fs ] && [ "$location_name" != tmpfs ] && [ "$location_name" != "no-op" ])… 62 if [ ! -d result ]; then 66 sizes_str="1B 8MB+1 8MB-1 128MB 4GB 30GB" 71 echo "===== TM PERF TEST SUITE - $operation - $location_name =====" 74 echo "Benchmark: $version - $size" 76 cmd="java -jar ../target/s3-benchmarks.jar \ [all …]
|
| /external/aws-sdk-java-v2/ |
| D | .brazil.json | 5 "annotations": { "packageName": "AwsJavaSdk-Core-Annotations" }, 6 "apache-client": { "packageName": "AwsJavaSdk-HttpClient-ApacheClient" }, 7 "arns": { "packageName": "AwsJavaSdk-Core-Arns" }, 8 "auth": { "packageName": "AwsJavaSdk-Core-Auth" }, 9 "auth-crt": { "packageName": "AwsJavaSdk-Core-AuthCrt" }, 10 "aws-cbor-protocol": { "packageName": "AwsJavaSdk-Core-AwsCborProtocol" }, 11 "aws-core": { "packageName": "AwsJavaSdk-Core-AwsCore" }, 12 "aws-crt-client": { "packageName": "AwsJavaSdk-HttpClient-CrtClient" }, 13 "aws-ion-protocol": { "packageName": "AwsJavaSdk-Core-AwsIonProtocol" }, 14 "aws-json-protocol": { "packageName": "AwsJavaSdk-Core-AwsJsonProtocol" }, [all …]
|
| D | pom.xml | 2 <!-- 15 --> 17 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.… 19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 22 <artifactId>aws-sdk-java-pom</artifactId> 27 for building software on AWS' cost-effective, scalable, and reliable 30 S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon 53 <module>aws-sdk-java</module> 56 <module>services-custom</module> 58 <module>bom-internal</module> [all …]
|
| /external/aws-sdk-java-v2/test/s3-benchmarks/src/main/java/software/amazon/awssdk/s3benchmarks/ |
| D | BenchmarkRunner.java | 27 import software.amazon.awssdk.services.s3.model.ChecksumAlgorithm; 80 options.addRequiredOption(null, BUCKET, true, "The s3 bucket"); in main() 81 options.addOption(null, KEY, true, "The s3 key"); in main() 93 … options.addOption(null, PREFIX, true, "S3 Prefix used in downloadDirectory and uploadDirectory"); in main() 101 …options.addOption(null, CONN_ACQ_TIMEOUT_IN_SEC, true, "Timeout for acquiring an already-establish… in main() 104 "Force the CRT http client to be used in JavaBased benchmarks"); in main() 143 …throw new UnsupportedOperationException("Java based s3 client benchmark only support upload and co… in main()
|
| /external/cpuinfo/ |
| D | CMakeLists.txt | 3 # ---[ Setup project 9 # ---[ Options. 16 OPTION(CPUINFO_BUILD_TOOLS "Build command-line tools" ON) 19 OPTION(CPUINFO_BUILD_BENCHMARKS "Build cpuinfo micro-benchmarks" ON) 20 OPTION(CPUINFO_BUILD_PKG_CONFIG "Build pkg-config manifest" ON) 22 # ---[ CMake options 53 # -- [ Determine target processor 59 # ---[ Build flags 68 ELSEIF(NOT CPUINFO_TARGET_PROCESSOR MATCHES "^(i[3-6]86|AMD64|x86(_64)?|armv[5-8].*|aarch64|arm64|A… 89 # ---[ Download deps [all …]
|
| /external/python/cpython3/Tools/stringbench/ |
| D | stringbench.py | 41 parser.add_option("-R", "--skip-re", dest="skip_re", 44 parser.add_option("-8", "--8-bit", dest="bytes_only", 46 help="only do 8-bit string benchmarks") 47 parser.add_option("-u", "--unicode", dest="unicode_only", 49 help="only do Unicode string benchmarks") 609 #### Benchmark the operator-based methods 644 @bench('s1+s2+s3+s4+...+s20', "concat 20 strings of words length 4 to 15", 649 s3=STR('FVZNJ') 668 (s1 + s2+ s3+ s4+ s5+ s6+ s7+ s8+ s9+s10+ 804 Python is a dynamic object-oriented programming language that can be [all …]
|
| /external/tensorflow/tensorflow/core/framework/ |
| D | tensor_shape_test.cc | 7 http://www.apache.org/licenses/LICENSE-2.0 30 static void set_data_type(TensorShape* s, DataType t) { s->set_data_type(t); } in set_data_type() 31 static uint8 data_type(const TensorShape* s) { return s->data_type(); } in data_type() 37 // The default TensorShape constructor constructs a shape of 0-dim in TEST() 38 // and 1-element. in TEST() 89 for (int i = -4; i <= 4; ++i) { in TEST() 109 s2.RemoveDimRange(-2, -3); // Empty interval. in TEST() 112 s2.RemoveDimRange(0, -2); in TEST() 115 TensorShape s3({2, 3, 5, 7}); in TEST() local 116 s3.RemoveDimRange(-3, -2); in TEST() [all …]
|
| /external/lz4/tests/ |
| D | Makefile | 2 # LZ4 programs - Makefile 3 # Copyright (C) Yann Collet 2011-2020 19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 22 # - LZ4 homepage : http://www.lz4.org 23 # - LZ4 source repository : https://github.com/lz4/lz4 28 # datagen : generates synthetic data samples for tests & benchmarks 37 DEBUGFLAGS = -g -DLZ4_DEBUG=$(DEBUGLEVEL) 38 CFLAGS ?= -O3 # can select custom optimization flags. Example : CFLAGS=-O2 make 39 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \ 40 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \ [all …]
|
| /external/tensorflow/ |
| D | .bazelrc | 4 # ----CONFIG OPTIONS---- 55 # noaws: Disable AWS S3 storage support 76 # tensorflow_testing_rbe_linux: RBE options to use RBE with tensorflow-testing project on linux 77 # tensorflow_testing_rbe_win: RBE options to use RBE with tensorflow-testing project on windo… 100 build --define framework_shared_object=true 102 build --define=use_fast_cpp_protos=true 103 build --define=allow_oversize_protos=true 105 build --spawn_strategy=standalone 106 build -c opt 109 build --announce_rc [all …]
|
| D | RELEASE.md | 78 …xperimental/SharpnessAwareMinimization). This class implements the sharpness-aware minimization te… 82 …* Added support for cross-trainer data caching in tf.data service. This saves computation resour… 91 …mptionCheckpointHandler) to handle worker preemption/maintenance and cluster-wise consistent error… 95 … to 100 times depending on the size of k. When running on CPU and GPU, a non-optimized XLA kernel … 117 …inistically (and `tf.errors.UnimplementedError` is no longer thrown) when op-determinism has been … 141 …-Review-Doctor, DEKHTIARJonathan, Deven Desai, Djacon, Duncan Riach, fedotoff, fo40225, Frederic B… 163 …ers should switch to [TensorFlow Decision Forests](https://github.com/tensorflow/decision-forests). 166 …eels now specifically conform to [manylinux2014](https://peps.python.org/pep-0599/), an upgrade fr… 167 … Forum thread](https://discuss.tensorflow.org/t/tensorflow-linux-wheels-are-being-upgraded-to-many… 168 * The `tf.keras.mixed_precision.experimental` API has been removed. The non-experimental symbols … [all …]
|
| /external/aws-sdk-java-v2/services/sagemaker/src/main/resources/codegen-resources/ |
| D | service-2.json | 4 "apiVersion":"2017-07-24", 14 "uid":"sagemaker-2017-07-24" 29 …ation, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html\">Amazo… 39 …nformation, see <a href=\"https://aws.amazon.com/answers/account-management/aws-tagging-strategies… 76 …ation, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/lineage-tracking.html\">Amazo… 126 … S3 URI of a dataset and the ECR registry path of an image. For more information, see <a href=\"ht… 140 …-series forecasting, non-tabular problem types such as image or text classification, and text gene… 154 …-series forecasting, non-tabular problem types such as image or text classification, and text gene… 168 …ore, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod.html\">Amazo… 192 … the resulting model artifacts to an Amazon Simple Storage Service (Amazon S3) bucket that you spe… [all …]
|
| /external/AFLplusplus/ |
| D | Changelog.md | 7 - afl-fuzz: 8 - default power schedule is now EXPLORE, due a fix in fast schedules 10 - fixed minor issues in the mutation engine, thanks to @futhewo for 12 - better deterministic fuzzing is now available, benchmarks have shown 13 to improve fuzzing. Enable with -D. Thanks to @kdsjZh for the PR! 14 - afl-cc: 15 - large rewrite by @SonicStark which fixes a few corner cases, thanks! 16 - LTO mode now requires llvm 12+ 17 - workaround for ASAN with gcc_plugin mode 18 - instrumentation: [all …]
|
| /external/AFLplusplus/docs/ |
| D | Changelog.md | 7 - afl-fuzz: 8 - default power schedule is now EXPLORE, due a fix in fast schedules 10 - fixed minor issues in the mutation engine, thanks to @futhewo for 12 - better deterministic fuzzing is now available, benchmarks have shown 13 to improve fuzzing. Enable with -D. Thanks to @kdsjZh for the PR! 14 - afl-cc: 15 - large rewrite by @SonicStark which fixes a few corner cases, thanks! 16 - LTO mode now requires llvm 12+ 17 - workaround for ASAN with gcc_plugin mode 18 - instrumentation: [all …]
|
| /external/wuffs-mirror-release-c/release/c/ |
| D | wuffs-v0.3.c | 7 // To use that single file as a "foo.c"-like implementation, instead of a 8 // "foo.h"-like header, #define WUFFS_IMPLEMENTATION before #include'ing or 11 // Wuffs' C code is generated automatically, not hand-written. These warnings' 15 // __GNUC__, clang-cl (which mimics MSVC's cl.exe) does not. 18 #pragma GCC diagnostic ignored "-Wimplicit-fallthrough" 19 #pragma GCC diagnostic ignored "-Wmissing-field-initializers" 20 #pragma GCC diagnostic ignored "-Wunreachable-code" 21 #pragma GCC diagnostic ignored "-Wunused-function" 22 #pragma GCC diagnostic ignored "-Wunused-parameter" 24 #pragma GCC diagnostic ignored "-Wold-style-cast" [all …]
|
| /external/llvm/lib/Transforms/Vectorize/ |
| D | SLPVectorizer.cpp | 1 //===- SLPVectorizer.cpp - A bottom up SLP Vectorizer ---------------------===// 8 //===----------------------------------------------------------------------===// 10 // stores that can be put together into vector-stores. Next, it attempts to 11 // construct vectorizable tree using the use-def chains. If a profitable tree 15 // "Loop-Aware SLP in GCC" by Ira Rosen, Dorit Nuzman, Ayal Zaks. 17 //===----------------------------------------------------------------------===// 50 #define SV_NAME "slp-vectorizer" 56 SLPCostThreshold("slp-threshold", cl::init(0), cl::Hidden, 61 ShouldVectorizeHor("slp-vectorize-hor", cl::init(true), cl::Hidden, 65 "slp-vectorize-hor-store", cl::init(false), cl::Hidden, [all …]
|
| /external/bazelbuild-rules_go/third_party/ |
| D | org_golang_x_tools-deletegopls.patch | 1 diff -urN a/gopls/api-diff/api_diff.go b/gopls/api-diff/api_diff.go 2 --- a/gopls/api-diff/api_diff.go 2000-01-01 00:00:00.000000000 -0000 3 +++ b/gopls/api-diff/api_diff.go 1970-01-01 00:00:00.000000000 +0000 4 @@ -1,89 +0,0 @@ 5 -// Copyright 2021 The Go Authors. All rights reserved. 6 -// Use of this source code is governed by a BSD-style 7 -// license that can be found in the LICENSE file. 8 - 9 -//go:build go1.18 10 -// +build go1.18 [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
| D | SLPVectorizer.cpp | 1 //===- SLPVectorizer.cpp - A bottom up SLP Vectorizer ---------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // stores that can be put together into vector-stores. Next, it attempts to 11 // construct vectorizable tree using the use-def chains. If a profitable tree 15 // "Loop-Aware SLP in GCC" by Ira Rosen, Dorit Nuzman, Ayal Zaks. 17 //===----------------------------------------------------------------------===// 105 #define SV_NAME "slp-vectorizer" 111 llvm::RunSLPVectorization("vectorize-slp", cl::init(false), cl::Hidden, 115 SLPCostThreshold("slp-threshold", cl::init(0), cl::Hidden, [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Vectorize/ |
| D | SLPVectorizer.cpp | 1 //===- SLPVectorizer.cpp - A bottom up SLP Vectorizer ---------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // stores that can be put together into vector-stores. Next, it attempts to 11 // construct vectorizable tree using the use-def chains. If a profitable tree 15 // "Loop-Aware SLP in GCC" by Ira Rosen, Dorit Nuzman, Ayal Zaks. 17 //===----------------------------------------------------------------------===// 107 #define SV_NAME "slp-vectorizer" 112 cl::opt<bool> RunSLPVectorization("vectorize-slp", cl::init(true), cl::Hidden, 116 SLPCostThreshold("slp-threshold", cl::init(0), cl::Hidden, [all …]
|