Home
last modified time | relevance | path

Searched full:test_config (Results 1 – 25 of 647) sorted by relevance

12345678910>>...26

/external/bazelbuild-rules_rust/test/process_wrapper/
Dprocess_wrapper_tester.bzl23 combined = ctx.attr.test_config == "combined"
25 if combined or ctx.attr.test_config == "stdout":
30 if combined or ctx.attr.test_config == "stderr":
35 if combined or (ctx.attr.test_config != "stdout" and ctx.attr.test_config != "stderr"):
39 if ctx.attr.test_config == "copy-output":
44 if combined or ctx.attr.test_config == "env-files":
47 if combined or ctx.attr.test_config == "arg-files":
50 if combined or ctx.attr.test_config == "subst-pwd":
57 args.add(ctx.attr.test_config)
62 if combined or ctx.attr.test_config == "subst-pwd":
[all …]
DBUILD.bazel49 test_config = "basic",
54 test_config = "subst-pwd",
59 test_config = "stdout",
64 test_config = "stderr",
72 test_config = "env-files",
80 test_config = "arg-files",
85 test_config = "copy-output",
96 test_config = "combined",
Dprocess_wrapper_tester.cc165 std::string test_config = argv[1]; in main() local
166 bool combined = test_config == "combined"; in main()
167 if (combined || test_config == "basic") { in main()
171 if (combined || test_config == "subst-pwd") { in main()
173 } else if (test_config == "basic") { in main()
177 if (combined || test_config == "env-files") { in main()
181 if (combined || test_config == "arg-files") { in main()
185 if (combined || test_config == "stdout") { in main()
189 if (combined || test_config == "stderr") { in main()
/external/webrtc/modules/audio_processing/
Daudio_processing_impl_locking_unittest.cc124 TestConfig test_config; in GenerateBriefTestConfigs() local
125 test_config.aec_type = aec_type; in GenerateBriefTestConfigs()
127 test_config.min_number_of_calls = 300; in GenerateBriefTestConfigs()
130 test_config.runtime_parameter_setting_scheme = in GenerateBriefTestConfigs()
134 test_config.initial_sample_rate_hz = 16000; in GenerateBriefTestConfigs()
137 test_config.render_api_function = in GenerateBriefTestConfigs()
139 test_config.capture_api_function = in GenerateBriefTestConfigs()
141 test_configs.push_back(test_config); in GenerateBriefTestConfigs()
144 test_config.render_api_function = in GenerateBriefTestConfigs()
146 test_config.capture_api_function = CaptureApiImpl::ProcessStreamImplFloat; in GenerateBriefTestConfigs()
[all …]
/external/pytorch/tools/stats/
Dtest_dashboard.py82 test_config = get_test_config(job_name)
83 grouped_tests[build_name][test_config].add(exclusion["test_file"])
86 for test_config, test_files in build.items():
87 grouped_tests[build_name][test_config] = sorted(test_files)
103 test_config = get_test_config(job_name)
110 grouped_tests[build_name][test_config][invoking_file][class_name][name].append(
125 for test_config, test_config_data in build.items():
136 reruns[build_name][test_config][invoking_file][class_name][
147 for test_config, test_config_data in build.items():
151 invoking_file_summary[build_name][test_config][invoking_file][
[all …]
/external/grpc-grpc/test/cpp/interop/
DBUILD57 "//test/cpp/util:test_config",
90 "//test/cpp/util:test_config",
114 "//test/cpp/util:test_config",
153 "//test/cpp/util:test_config",
202 "//test/cpp/util:test_config",
222 "//test/cpp/util:test_config",
251 "//test/cpp/util:test_config",
285 "//test/cpp/util:test_config",
328 "//test/cpp/util:test_config",
343 "//test/cpp/util:test_config",
[all …]
/external/pytorch/benchmarks/operator_benchmark/
Dbenchmark_pytorch.py107 test_config: a namedtuple includes test_name, input_shape, tag, run_backward.
113 def __init__(self, op_bench, test_config): argument
114 self.test_config = test_config
140 "type": self.test_config.test_name,
181 def create_pytorch_op_test_case(op_bench, test_config): argument
187 test_config: TestConfig(test_name='add_M8_N2_K1', input_config='M: 8, N: 2, K: 1',
192 test_case = PyTorchOperatorTestCase(op_bench, test_config)
193 test_config = test_case.test_config
195 func_name = f"{op.module_name()}{test_case.framework}{str(test_config)}"
Dbenchmark_core.py70 test_config = TestConfig(test_name, input_config, tags, run_backward)
71 return OperatorTestCase(bench_op_obj, test_config)
224 test_name = "_".join([test_case.framework, test_case.test_config.test_name])
240 … f"# Name: {test_case.test_config.test_name}\n# Input: {test_case.test_config.input_config}"
243 mode = "Backward" if test_case.test_config.run_backward else "Forward"
272 cuda_sync = "cuda" in test_case.test_config.test_name
317 [test_case.framework, test_case.test_config.test_name, mode]
353 op_test_config = test_case.test_config
378 or "device" not in test_case.test_config.input_config
386 print(f"# {test_case.test_config.test_name}")
[all …]
/external/pytorch/.ci/pytorch/
Dtest.sh126 if [[ "$TEST_CONFIG" == 'default' ]]; then
131 if [[ "$TEST_CONFIG" == 'distributed' ]] && [[ "$BUILD_ENVIRONMENT" == *rocm* ]]; then
135 if [[ "$TEST_CONFIG" == 'slow' ]]; then
158 if [[ "$TEST_CONFIG" == *crossref* ]]; then
262 if [[ $TEST_CONFIG == 'nogpu_NO_AVX2' ]]; then
264 elif [[ $TEST_CONFIG == 'nogpu_AVX512' ]]; then
390 # "Global" flags for inductor benchmarking controlled by TEST_CONFIG
391 # For example 'dynamic_aot_eager_torchbench' TEST_CONFIG means we run
410 if [[ "${TEST_CONFIG}" == *pr_time_benchmarks* ]]; then
413 elif [[ "${TEST_CONFIG}" == *dynamo_eager* ]]; then
[all …]
/external/pytorch/.github/actions/pytest-cache-upload/
Daction.yml16 test_config:
44 TEST_CONFIG: ${{ inputs.test_config }}
54 --test_config $TEST_CONFIG \
/external/grpc-grpc/test/cpp/qps/
DBUILD61 "//test/cpp/util:test_config",
131 "//test/cpp/util:test_config",
143 "//test/cpp/util:test_config",
167 "//test/cpp/util:test_config",
180 "//test/cpp/util:test_config",
192 "//test/cpp/util:test_config",
214 "//test/cpp/util:test_config",
238 "//test/cpp/util:test_config",
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/base64-0.13.1/benches/
Dbenchmarks.rs16 const TEST_CONFIG: Config = base64::STANDARD; constant
36 decode_config_buf(&encoded, TEST_CONFIG, &mut buf).unwrap(); in do_decode_bench_reuse_buf()
50 decode_config_slice(&encoded, TEST_CONFIG, &mut buf).unwrap(); in do_decode_bench_slice()
66 let mut decoder = base64::read::DecoderReader::new(&mut cursor, TEST_CONFIG); in do_decode_bench_stream()
86 let e = format!("{}", display::Base64Display::with_config(&v, TEST_CONFIG)); in do_encode_bench_display()
96 encode_config_buf(&v, TEST_CONFIG, &mut buf); in do_encode_bench_reuse_buf()
108 encode_config_slice(&v, TEST_CONFIG, &mut buf); in do_encode_bench_slice()
120 let mut stream_enc = write::EncoderWriter::new(&mut buf, TEST_CONFIG); in do_encode_bench_stream()
131 let mut stream_enc = write::EncoderStringWriter::new(TEST_CONFIG); in do_encode_bench_string_stream()
145 let mut stream_enc = write::EncoderStringWriter::from(&mut buf, TEST_CONFIG); in do_encode_bench_string_reuse_buf_stream()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/base64-0.13.1/benches/
Dbenchmarks.rs16 const TEST_CONFIG: Config = base64::STANDARD; constant
36 decode_config_buf(&encoded, TEST_CONFIG, &mut buf).unwrap(); in do_decode_bench_reuse_buf()
50 decode_config_slice(&encoded, TEST_CONFIG, &mut buf).unwrap(); in do_decode_bench_slice()
66 let mut decoder = base64::read::DecoderReader::new(&mut cursor, TEST_CONFIG); in do_decode_bench_stream()
86 let e = format!("{}", display::Base64Display::with_config(&v, TEST_CONFIG)); in do_encode_bench_display()
96 encode_config_buf(&v, TEST_CONFIG, &mut buf); in do_encode_bench_reuse_buf()
108 encode_config_slice(&v, TEST_CONFIG, &mut buf); in do_encode_bench_slice()
120 let mut stream_enc = write::EncoderWriter::new(&mut buf, TEST_CONFIG); in do_encode_bench_stream()
131 let mut stream_enc = write::EncoderStringWriter::new(TEST_CONFIG); in do_encode_bench_string_stream()
145 let mut stream_enc = write::EncoderStringWriter::from(&mut buf, TEST_CONFIG); in do_encode_bench_string_reuse_buf_stream()
/external/python/google-api-python-client/samples/compute/
Dnoxfile.py35 # `TEST_CONFIG` dict is a configuration hook that allows users to
40 TEST_CONFIG = { variable
70 # Update the TEST_CONFIG with the user supplied values.
71 TEST_CONFIG.update(TEST_CONFIG_OVERRIDE)
79 env_key = TEST_CONFIG["gcloud_project_env"]
84 ret.update(TEST_CONFIG["envs"])
93 IGNORED_VERSIONS = TEST_CONFIG["ignored_versions"]
149 if not TEST_CONFIG["enforce_type_hints"]:
187 if TEST_CONFIG["pip_version_override"]:
188 pip_version = TEST_CONFIG["pip_version_override"]
/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/helpers/
Dskips.py111 test_config = TestConfig(
115 if not check(test_config):
116 logger.info('Skipping %s', test_config)
117 raise unittest.SkipTest(f'Unsupported test config: {test_config}')
119 logger.info('Detected language and version: %s', test_config)
120 return test_config
/external/tensorflow/tensorflow/lite/kernels/
Dacceleration_test_util_internal.h40 ConfigurationEntry(const std::string& test_id_rex, T test_config, in ConfigurationEntry() argument
43 test_config_(test_config), in ConfigurationEntry()
87 const std::vector<ConfigurationEntry<T>>* test_config = in GetAccelerationTestParam() local
91 test_config->begin(), test_config->end(), in GetAccelerationTestParam()
93 if (test_config_iter != test_config->end() && in GetAccelerationTestParam()
/external/e2fsprogs/tests/
Dtest_one.in31 if test "$TEST_CONFIG"x = x; then
32 TEST_CONFIG=$SRCDIR/test_config
35 . $TEST_CONFIG
/external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/
DBUILD33 "//tensorflow/tools/tensorflow_builder/compat_checker:test_config",
45 name = "test_config",
46 srcs = ["test_config.ini"],
/external/perfetto/test/
Dtraced_integrationtest.cc40 #include "protos/perfetto/config/test_config.gen.h"
314 protos::gen::TestConfig test_config; in TEST() local
315 test_config.set_seed(42); in TEST()
316 test_config.set_message_count(1); in TEST()
317 test_config.set_message_size(1024); in TEST()
318 test_config.set_send_batch_on_register(true); in TEST()
321 helper.ProduceStartupEventBatch(test_config); in TEST()
335 *ds_config->mutable_for_testing() = test_config; in TEST()
429 auto* test_config = ds_config->mutable_for_testing(); in TEST() local
430 test_config->set_seed(kRandomSeed); in TEST()
[all …]
/external/python/mobly/mobly/
Dtest_runner.py51 execute_one_test_class(test_class, test_config, test_identifier)
322 test_config = test_run_info.config.copy()
323 test_config.test_class_name_suffix = test_run_info.test_class_name_suffix
324 test = test_run_info.test_class(test_config)
508 test_config = test_run_info.config.copy()
509 test_config.log_path = self._test_run_metadata.root_output_path
510 test_config.summary_writer = summary_writer
511 test_config.test_class_name_suffix = (
516 config=test_config,
/external/cronet/test_runner/
DAndroid.bp28 test_config: "AndroidNetTest.xml",
61 test_config: "StableAndroidNetTest.xml",
90 test_config: "AndroidTest.xml",
120 test_config: "StableAndroidTest.xml",
/external/rust/android-crates-io/crates/codespan-reporting/tests/
Dterm.rs10 static ref TEST_CONFIG: Config = Config {
23 ..TEST_CONFIG.clone()
34 ..TEST_CONFIG.clone()
45 ..TEST_CONFIG.clone()
56 ..TEST_CONFIG.clone()
67 ..TEST_CONFIG.clone()
78 ..TEST_CONFIG.clone()
90 ..TEST_CONFIG.clone()
724 let config = TEST_CONFIG.clone(); in tab_width_default_no_color()
733 ..TEST_CONFIG.clone() in tab_width_3_no_color()
[all …]
/external/pytorch/.github/scripts/
Dpytest_caching_utils.py62 test_config: str,
88 pr_identifier, repo, job_identifier, sha, test_config, shard
144 test_config: str = "",
155 if test_config:
156 prefix += f"/{sanitize_for_s3(test_config)}"
/external/pytorch/tools/test/
Dtest_upload_stats_lib.py24 TEST_CONFIG = "test-config" variable
43 "TEST_CONFIG": TEST_CONFIG,
77 "test_config": TEST_CONFIG,
/external/grpc-grpc/test/cpp/ext/filters/logging/
DBUILD39 "//test/cpp/util:test_config",
65 "//test/cpp/util:test_config",
92 "//test/cpp/util:test_config",

12345678910>>...26