Home
last modified time | relevance | path

Searched +full:s3 +full:- +full:benchmarks (Results 1 – 25 of 48) sorted by relevance

12

/aosp_15_r20/external/aws-sdk-java-v2/test/s3-benchmarks/
H A DREADME.md1 # 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 …]
H A Dpom.xml1 <?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 …]
/aosp_15_r20/external/aws-sdk-java-v2/buildspecs/
H A Drelease-javadoc.yml4 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 …]
H A Drelease-to-maven.yml6 - 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 …]
/aosp_15_r20/external/aws-sdk-java-v2/test/s3-benchmarks/src/main/java/software/amazon/awssdk/s3benchmarks/s3express/
H A DS3BenchmarkRunner.java30 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 …]
/aosp_15_r20/external/aws-sdk-java-v2/test/s3-benchmarks/.scripts/
H A Dbenchmark-copy18 # 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 …]
H A Dbenchmark18 # 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 …]
H A Dbenchmark-dir18 # 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 …]
/aosp_15_r20/external/aws-sdk-java-v2/
H A D.brazil.json5 "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 …]
H A Dpom.xml2 <!--
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 …]
/aosp_15_r20/external/pytorch/.github/workflows/
H A Dupload-test-stats.yml5 …trunk, periodic, inductor, unstable, slow, unstable-periodic, inductor-periodic, rocm, inductor-mi…
7 - completed
11 …ion adapted from https://github.com/community/community/discussions/21090#discussioncomment-3226271
14 runs-on: ubuntu-latest
18 - name: Get workflow run conclusion
19 uses: octokit/request-[email protected]
26 upload-test-stats:
32 runs-on: ubuntu-22.04
33 environment: upload-stats
36 - name: Print workflow information
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/test/s3-benchmarks/src/main/java/software/amazon/awssdk/s3benchmarks/
H A DBenchmarkRunner.java27 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()
/aosp_15_r20/external/pytorch/benchmarks/dynamo/ci_expected_accuracy/
H A Dupdate_expected.py12 python benchmarks/dynamo/ci_expected_accuracy.py <sha of pytorch commit that has completed inductor…
15 - doesn't handle 'retry' jobs in CI, if the same hash has more than one set of artifacts, gets the …
36 …RL = "https://api.usw2a1.rockset.com/v1/public/shared_lambdas/4ca0033e-0117-41f5-b043-59cde19eff35"
64 S3_BASE_URL = "https://gha-artifacts.s3.amazonaws.com"
71 r["workflowName"] in ("inductor", "inductor-periodic")
81 … artifact_filename = f"test-reports-test-{suite}-{shard_id}-{num_shards}-{machine}_{id}.zip"
90 subsuite = strs[-1]
105 name = f"test/test-reports/{phase}_{subsuite}.csv"
174 root_path = "benchmarks/dynamo/ci_expected_accuracy/"
/aosp_15_r20/external/cpuinfo/
H A DCMakeLists.txt3 # ---[ 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 …]
/aosp_15_r20/external/pytorch/.github/scripts/
HDrockset_mocks.json.gz
/aosp_15_r20/external/python/cpython3/Tools/stringbench/
Dstringbench.py41 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 …]
/aosp_15_r20/external/pytorch/.ci/pytorch/
H A Dtest.sh7 set -ex
18 # Workaround for dind-rootless userid mapping (https://github.com/pytorch/ci-infra/issues/96)
19 WORKSPACE_ORIGINAL_OWNER_ID=$(stat -c '%u' "/var/lib/jenkins/workspace")
23 echo "For more details refer to https://github.com/sudo-project/sudo/issues/42"
24 sudo chown -R "$WORKSPACE_ORIGINAL_OWNER_ID" /var/lib/jenkins/workspace
29 sudo chown -R jenkins /var/lib/jenkins/workspace
30 git config --global --add safe.directory /var/lib/jenkins/workspace
36 TORCH_INSTALL_DIR=$(python -c "import site; print(site.getsitepackages()[0])")/torch
98 ulimit -c 0
101 # as documented in https://man7.org/linux/man-pages/man5/core.5.html, we could
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/framework/
H A Dtensor_shape_test.cc7 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 …]
/aosp_15_r20/prebuilts/go/linux-x86/src/unicode/utf8/
Dutf8_test.go2 // Use of this source code is governed by a BSD-style
99 b1 := b[0 : len(b)-1]
155 // there's an extra byte that bytes left behind - make sure trailing byte works
171 r, size = DecodeRune(b[0 : len(b)-1])
173 … t.Errorf("DecodeRune(%q) = %#04x, %d want %#04x, %d", b[0:len(b)-1], r, size, RuneError, wantsize)
175 s = m.str[0 : len(m.str)-1]
185 b[len(b)-1] = 0x7F
277 // s3
318 return -1
377 j--
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/base64-0.13.1/src/
H A Ddecode.rs37 /// The last non-padding input symbol's encoded 6 bits have nonzero bits that will be discarded.
45 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt()
50 DecodeError::InvalidLength => write!(f, "Encoded text cannot have a 6-bit remainder."), in fmt()
60 fn description(&self) -> &str { in description()
68 fn cause(&self) -> Option<&dyn error::Error> { in cause()
88 pub fn decode<T: AsRef<[u8]>>(input: T) -> Result<Vec<u8>, DecodeError> { in decode()
104 /// let bytes_url = base64::decode_config("aGVsbG8gaW50ZXJuZXR-Cg==", base64::URL_SAFE).unwrap();
109 pub fn decode_config<T: AsRef<[u8]>>(input: T, config: Config) -> Result<Vec<u8>, DecodeError> { in decode_config()
138 /// base64::decode_config_buf("aGVsbG8gaW50ZXJuZXR-Cg==", base64::URL_SAFE, &mut buffer)
148 ) -> Result<(), DecodeError> { in decode_config_buf()
[all …]
/aosp_15_r20/external/tensorflow/
H A D.bazelrc4 # ----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 …]
/aosp_15_r20/external/lz4/tests/
H A DMakefile2 # 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 USERCFLAGS:= -O3 $(CFLAGS) # appended for higher priority
39 WFLAGS = -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \
40 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cpu/
H A DUpSampleKernel.cpp28 // - It's not obvious that despite their names (and the file name), all these
31 // - the term "horizontal" or "within dims" or "contiguous dim" refers to the
35 // last one. In other kernels these are also referred to as "zero-stride" and
36 // "non-zero-stride" - we should unify all this.
37 // - the terms "zero-stride" and "non-zero strides" refer to the weights and
39 // - It's not always clear which kernel is vectorized and which one isn't.
40 // - The functions like _use_vectorized_kernel_cond() should be renamed and
42 // code-path where a choice is made between a vectorized kernel vs a
43 // non-vectorized one. See e.g. upsample_bilinear2d_kernel_impl() where we
46 // - It's not always clear which code is part of a "separable interpolation"
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/sagemaker/src/main/resources/codegen-resources/
H A Dservice-2.json4 "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…
126S3 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 …]
/aosp_15_r20/art/runtime/arch/arm64/
H A Dquick_entrypoints_arm64.S8 * http://www.apache.org/licenses/LICENSE-2.0
24 str \reg, [sp, #-(\frame_adjustment)]!
32 .cfi_adjust_cfa_offset -(\frame_adjustment)
43 * TODO This is probably too conservative - saving FP & LR.
47 // Our registers aren't intermixed - just spill in order.
50 // ArtMethod* xIP0 = Runtime::instance_->callee_save_methods_[kSaveRefAndArgs];
57 // Place sp in Thread::Current()->top_quick_frame.
66 // Place sp in Thread::Current()->top_quick_frame.
79 // Ugly compile-time check, but we only have the preprocessor.
121 // ArtMethod* xIP0 = Runtime::instance_->callee_save_methods_[kSaveEverything];
[all …]

12