Home
last modified time | relevance | path

Searched full:targets (Results 1 – 25 of 12421) sorted by relevance

12345678910>>...497

/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/
H A DMakefile2 TARGETS += alsa
3 TARGETS += amd-pstate
4 TARGETS += arm64
5 TARGETS += bpf
6 TARGETS += breakpoints
7 TARGETS += capabilities
8 TARGETS += cgroup
9 TARGETS += clone3
10 TARGETS += core
11 TARGETS += cpufreq
[all …]
/aosp_15_r20/external/bazelbuild-rules_cc/tests/rule_based_toolchain/toolchain_config/
H A Dtoolchain_config_test.bzl58 def _duplicate_feature_names_invalid_test(env, targets):
61 features = [targets.simple_feature, targets.same_feature_name],
65 targets.same_feature_name.label,
66 targets.simple_feature.label,
72 features = [targets.builtin_feature, targets.overrides_feature],
76 def _duplicate_action_type_invalid_test(env, targets):
79 features = [targets.simple_feature],
80 action_type_configs = [targets.compile_config, targets.c_compile_config],
82 "The action type %s is configured by" % targets.c_compile.label,
83 targets.compile_config.label,
[all …]
/aosp_15_r20/frameworks/compile/slang/tests/F_reflection3264_foreach_mismatch/
Dstderr.txt.expect1 …rror: foreach kernel 'bb' has __attribute__((kernel)) for 64-bit targets but not for 32-bit targets
2 …each kernel 'dd' has output type 'uint' for 32-bit targets but output type 'ulong' for 64-bit targ…
3 …rror: foreach kernel 'ii' has output type 'int' for 64-bit targets but no output for 32-bit targets
4 …rror: foreach kernel 'jj' has output type 'int' for 32-bit targets but no output for 64-bit targets
5 …pt:66:16: error: foreach kernel 'nn' has 1 input for 32-bit targets but 2 inputs for 64-bit targets
6 …or: foreach kernel 'qq' has different special parameters for 32-bit targets than for 64-bit targets
7 …input of foreach kernel 'uu' has type 'uint' for 32-bit targets but type 'ulong' for 64-bit targets
8 …f foreach kernel 'uu' has type 'struct S' for 32-bit targets but type 'struct T' for 64-bit targets
9 …ch kernel 'xx' has 0 usrData parameters for 32-bit targets but 1 usrData parameter for 64-bit targ…
10 …ach kernel 'ww' has 1 usrData parameter for 32-bit targets but 0 usrData parameters for 64-bit tar…
[all …]
/aosp_15_r20/external/AFLplusplus/benchmark/
H A Dbenchmark-results.jsonl1 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr": …
2 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
3 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
4 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
5 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
6 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
7 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
8 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
9 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
10 …model": "Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz", "cpu_threads": 16}, "targets": {"test-instr-pe…
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tracing-subscriber/src/filter/
Dtargets.rs3 //! See [`Targets`] for details.
29 /// Targets are typically equal to the Rust module path of the code where the
38 /// # Filtering With `Targets`
40 /// A `Targets` filter consists of one or more [target] prefixes, paired with
48 /// The [`EnvFilter`] type also provided by this crate is very similar to `Targets`,
51 /// `Targets` can be thought of as a lighter-weight form of [`EnvFilter`] that
56 /// A `Targets` filter can be constructed by programmatically adding targets and
63 /// let filter = filter::Targets::new()
69 /// // Build a new subscriber with the `fmt` layer using the `Targets`
79 /// use tracing_subscriber::filter::{Targets, LevelFilter};
[all …]
/aosp_15_r20/tools/asuite/aidegen/lib/
H A Dnative_util.py38 def generate_clion_projects(targets): argument
39 """Generates CLion projects by targets.
42 targets.
54 targets: A list of targets to check and generate their native projects.
60 parent_dir, targets = _get_merged_native_target(cc_module_info, targets)
66 for target in targets:
97 def _filter_out_modules(targets, filter_func): argument
98 """Filters out target from targets if it passes the filter function.
101 targets: A list of targets to be analyzed.
106 targets.
[all …]
/aosp_15_r20/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DRemoteTargetGluer.java58 * Use this constructor if remote targets are split-screen independent
61 RemoteAnimationTargets targets, boolean forDesktop) { in RemoteTargetGluer() argument
62 init(context, sizingStrategy, targets.apps.length, forDesktop); in RemoteTargetGluer()
83 // get remote targets in RemoteTargetGluer()
106 * Assigns only the apps associated with {@param targets} into their own TaskViewSimulators.
107 * Length of targets.apps should match that of {@link #mRemoteTargetHandles}.
112 public RemoteTargetHandle[] assignTargets(RemoteAnimationTargets targets) { in assignTargets() argument
114 RemoteAnimationTarget primaryTaskTarget = targets.apps[i]; in assignTargets()
116 createRemoteAnimationTargetsForTarget(targets, Collections.emptyList())); in assignTargets()
126 public RemoteTargetHandle[] assignTargetsForSplitScreen(RemoteAnimationTargets targets, in assignTargetsForSplitScreen() argument
[all …]
/aosp_15_r20/external/pytorch/test/optim/
H A Dtest_lrscheduler.py349 targets = [single_targets, [x * epochs for x in single_targets]]
351 self._test(scheduler, targets, epochs)
358 targets = [[0.1] * 3 + [0.01] * 3 + [0.001] * 3 + [0.0001]]
360 self._test_get_last_lr(scheduler, targets, epochs)
369 targets = [single_targets, [x * epochs for x in single_targets]]
371 self._test_get_last_lr(scheduler, targets, epochs)
380 targets = [single_targets, [x * epochs for x in single_targets]]
382 self._test(scheduler, targets, epochs)
391 targets = [single_targets, [x * epochs for x in single_targets]]
393 self._test_with_epoch(scheduler, targets, epochs)
[all …]
/aosp_15_r20/external/bazelbuild-rules_cc/tests/rule_based_toolchain/features/
H A Dfeatures_test.bzl40 def _simple_feature_test(env, targets):
41 simple = env.expect.that_target(targets.simple).provider(FeatureInfo)
43 simple.args().args().contains_exactly([targets.c_compile.label])
50 targets.c_compile[ArgsInfo].actions.to_list()[0],
53 c_compile_action.args().contains_exactly([targets.c_compile[ArgsInfo]])
66 def _feature_collects_requirements_test(env, targets):
67 ft = env.expect.that_target(targets.requires).provider(FeatureInfo)
69 targets.feature_set.label,
77 def _feature_collects_implies_test(env, targets):
78 env.expect.that_target(targets.implies).provider(
[all …]
/aosp_15_r20/build/soong/android/
H A Darch.go407 // module, then searches through the Targets to determine which have enabled Targets for this
423 for _, t := range ctx.Config().Targets[os] {
564 // "both": compile for all Targets supported by the OsClass (generally x86_64 and x86, or arm64 and…
569 // "common": compile a for a single Target that will work on all Targets supported by the OsClass (…
571 // Once the list of Targets is determined, the module is split into a variant for each Target.
574 // but will have a common Target that is expected to handle all other selected Targets via ctx.Mult…
578 Targets map[string]Target member
600 osTargets := ctx.Config().Targets[os]
603 // Filter NativeBridge targets unless they are explicitly supported.
611 // Filter HostCross targets if disabled.
[all …]
/aosp_15_r20/external/llvm/unittests/Transforms/IPO/
H A DWholeProgramDevirt.cpp30 VirtualCallTarget Targets[] = { in TEST() local
35 EXPECT_EQ(2ull, findLowestOffset(Targets, /*IsAfter=*/false, 1)); in TEST()
36 EXPECT_EQ(66ull, findLowestOffset(Targets, /*IsAfter=*/true, 1)); in TEST()
38 EXPECT_EQ(8ull, findLowestOffset(Targets, /*IsAfter=*/false, 8)); in TEST()
39 EXPECT_EQ(72ull, findLowestOffset(Targets, /*IsAfter=*/true, 8)); in TEST()
42 EXPECT_EQ(33ull, findLowestOffset(Targets, /*IsAfter=*/false, 1)); in TEST()
43 EXPECT_EQ(65ull, findLowestOffset(Targets, /*IsAfter=*/true, 1)); in TEST()
45 EXPECT_EQ(40ull, findLowestOffset(Targets, /*IsAfter=*/false, 8)); in TEST()
46 EXPECT_EQ(72ull, findLowestOffset(Targets, /*IsAfter=*/true, 8)); in TEST()
50 EXPECT_EQ(66ull, findLowestOffset(Targets, /*IsAfter=*/false, 1)); in TEST()
[all …]
/aosp_15_r20/external/bazelbuild-rules_cc/tests/rule_based_toolchain/variables/
H A Dvariables_test.bzl37 def _types_represent_correctly_test(env, targets):
38 env.expect.that_str(_type(targets.str_list)["repr"]).equals("List[string]")
39 env.expect.that_str(_type(targets.str_option)["repr"]).equals("Option[string]")
40 …env.expect.that_str(_type(targets.struct)["repr"]).equals("struct(nested_str=string, nested_str_li…
41 …env.expect.that_str(_type(targets.struct_list)["repr"]).equals("List[struct(nested_str=string, nes…
43 def _get_types_test(env, targets):
44 c_compile = targets.c_compile[ActionTypeInfo]
45 cpp_compile = targets.cpp_compile[ActionTypeInfo]
46 variables = targets.variables[BuiltinVariablesInfo].variables
81 expect_type("struct").ok().equals(_type(targets.struct))
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/
H A Dnn_xent_test.py36 def _SigmoidCrossEntropyWithLogits(self, logits, targets): argument
37 assert len(logits) == len(targets)
41 return [-z * log(y) - (1 - z) * log(1 - y) for y, z in zip(pred, targets)]
49 targets = constant_op.constant(y, shape=sizes, dtype=dtype, name="targets")
51 return logits, targets, losses
56 logits, targets, _ = self._Inputs()
58 labels=targets, logits=logits, name="mylogistic")
65 logits, targets, losses = self._Inputs(dtype=dtype)
67 labels=targets, logits=logits)
76 logits, targets, losses = self._Inputs(dtype=dtype, sizes=[2, 2, 2])
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/cfg/
Dbuilder.go20 targets *targets // linked stack of branch targets member
135 for t := b.targets; t != nil && block == nil; t = t.tail {
146 for t := b.targets; t != nil && block == nil; t = t.tail {
152 for t := b.targets; t != nil && block == nil; t = t.tail {
217 b.targets = &targets{
218 tail: b.targets,
223 b.targets = b.targets.tail
230 b.targets = &targets{
231 tail: b.targets,
236 b.targets = b.targets.tail
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/TextAPI/
H A DTextStub.cpp157 targets: [ armv7-ios, x86_64-maccatalyst ] # The list of applicable tapi supported target triples
170 - targets: [ armv7-ios ] # Optional:
181 - targets: [ arm64-macos ] # The list of target triples associated with symb…
190 - targets: [ arm64-macos, x86_64-maccatalyst ] # Optional: Targets for applicable additional sym…
194 - targets: [ arm64-macos ] # The list of target triples associated with symbols
232 TargetList Targets; member
243 std::vector<Target> Targets; member
248 std::vector<Target> Targets; member
326 IO.mapRequired("targets", Section.Targets); in mapping()
338 IO.mapRequired("targets", Section.Targets); in mapping()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
H A DTextStub.cpp157 targets: [ armv7-ios, x86_64-maccatalyst ] # The list of applicable tapi supported target triples
170 - targets: [ armv7-ios ] # Optional:
181 - targets: [ arm64-macos ] # The list of target triples associated with symb…
190 - targets: [ arm64-macos, x86_64-maccatalyst ] # Optional: Targets for applicable additional sym…
194 - targets: [ arm64-macos ] # The list of target triples associated with symbols
232 TargetList Targets; member
243 std::vector<Target> Targets; member
248 std::vector<Target> Targets; member
326 IO.mapRequired("targets", Section.Targets); in mapping()
338 IO.mapRequired("targets", Section.Targets); in mapping()
[all …]
/aosp_15_r20/frameworks/compile/slang/tests/F_reflection3264_struct_mismatch/
Dstderr.txt.expect1 …rror: global variable 'aa' has type 'int' for 32-bit targets but type 'struct t' for 64-bit targets
2 …rror: global variable 'bb' has type 'int' for 32-bit targets but type 'struct q' for 64-bit targets
3 …rror: global variable 'cc' has type 'int' for 32-bit targets but type 'struct b' for 64-bit targets
4 …rror: global variable 'dd' has type 'struct j' for 32-bit targets but type 'int' for 64-bit targets
5 …rror: global variable 'ee' has type 'struct f' for 32-bit targets but type 'int' for 64-bit targets
6 …rror: global variable 'ff' has type 'struct o' for 32-bit targets but type 'int' for 64-bit targets
7 reflection3264_struct_mismatch.rscript:6:8: error: structure 'q' is exported only for 64-bit targets
8 reflection3264_struct_mismatch.rscript:8:8: error: structure 'b' is exported only for 64-bit targets
9 reflection3264_struct_mismatch.rscript:4:8: error: structure 't' is exported only for 64-bit targets
10 …r: 2nd field of exported structure 'FieldName' is 'e' for 32-bit targets but 'b' for 64-bit targets
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DLossCTC.cpp45 // this ad-hoc converts from targets (l in [1]) to augmented targets (l' in [1]) note that no bound…
56 …t64_t>> ctc_loss_allocate_outputs(const Tensor& log_probs, const Tensor& targets, IntArrayRef inpu… in ctc_loss_allocate_outputs() argument
58 // targets [int64]: batch_size x target_length OR sum(target_lengths) in ctc_loss_allocate_outputs()
62 auto targets_arg = TensorArg(targets, "targets", 2); in ctc_loss_allocate_outputs()
77 if (targets.dim() == 1) { // concatenated targets in ctc_loss_allocate_outputs()
88 tg_target_stride = targets.stride(0); in ctc_loss_allocate_outputs()
93 int64_t tg_batch_stride = targets.stride(0); in ctc_loss_allocate_outputs()
102 tg_target_stride = targets.stride(1); in ctc_loss_allocate_outputs()
104 TORCH_CHECK(targets.size(1) >= max_target_length, in ctc_loss_allocate_outputs()
105 …ve size at least ", max_target_length, " at dimension 1, but got size ", targets.size(1), " for ",… in ctc_loss_allocate_outputs()
[all …]
/aosp_15_r20/external/libwebm/webm_parser/tests/
H A Dtargets_parser_test.cc17 using webm::Targets;
28 const Targets targets = parser_.value(); in TEST_F() local
30 EXPECT_FALSE(targets.type_value.is_present()); in TEST_F()
31 EXPECT_EQ(static_cast<std::uint64_t>(50), targets.type_value.value()); in TEST_F()
33 EXPECT_FALSE(targets.type.is_present()); in TEST_F()
34 EXPECT_EQ("", targets.type.value()); in TEST_F()
36 EXPECT_EQ(static_cast<std::size_t>(0), targets.track_uids.size()); in TEST_F()
53 const Targets targets = parser_.value(); in TEST_F() local
55 EXPECT_TRUE(targets.type_value.is_present()); in TEST_F()
56 EXPECT_EQ(static_cast<std::uint64_t>(50), targets.type_value.value()); in TEST_F()
[all …]
/aosp_15_r20/external/webrtc/android_tools/
H A Dgenerate_bp.py108 print('// default license using the \'licenses: [...]\' property on targets as needed.')
146 # Iterate through all of the targets for each architecture collecting the flags that
147 # are the same for all targets in that architecture. Use a list instead of a set
151 for arch, targets in targets_by_arch.items():
153 for target in targets.values():
170 # for all targets in all architectures.
250 # The flags in the default entry can be safely removed from the targets
251 for arch, targets in targets_by_arch.items():
254 for target in targets.values():
262 def TransitiveDependencies(name, dep_type, targets): argument
[all …]
/aosp_15_r20/external/pigweed/pw_kvs/
H A DBUILD.bazel325 # system which allowing enabling specific tests for targets that support
326 # them and modifying test parameters for different targets.
343 # system which allowing enabling specific tests for targets that support
344 # them and modifying test parameters for different targets.
360 # system which allowing enabling specific tests for targets that support
361 # them and modifying test parameters for different targets.
457 # system which allowing enabling specific tests for targets that support
458 # them and modifying test parameters for different targets.
474 # system which allowing enabling specific tests for targets that support
475 # them and modifying test parameters for different targets.
[all …]
/aosp_15_r20/external/executorch/shim/xplat/executorch/build/
H A Druntime_wrapper.bzl1 """Common macros to build Executorch runtime targets in both fbcode and xplat.
6 - A `targets.bzl` file that uses the macros in this file
8 This function should define all of the build targets in terms of rules in the
11 The `targets.bzl` file must load this file from xplat (not fbcode), like
15 - A TARGETS file and a BUILD file which both contain:
17 load(":targets.bzl", "define_common_targets")
21 as the common targets, it should define that rule directly in the TARGETS file
23 targets and BUCK files.
26 use TARGETS files normally. Same for xplat-only directories and BUCK files.
41 def _patch_executorch_references(targets, use_static_deps = False):
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/lockscreen/
H A DLockscreenSmartspaceControllerTest.kt358 // THEN the listener receives an empty list of targets and unregisters the notifier in <lambda>()
436 // WHEN we receive a list of targets in <lambda>()
437 val targets = listOf( in <lambda>() constant
442 sessionListener.onTargetsAvailable(targets) in <lambda>()
445 verify(plugin).onTargetsAvailable(eq(targets)) in <lambda>()
454 // WHEN we receive a list of targets in <lambda>()
455 val targets = listOf( in <lambda>() constant
460 sessionListener.onTargetsAvailable(targets) in <lambda>()
463 verify(plugin).onTargetsAvailable(eq(targets)) in <lambda>()
472 // WHEN we receive a list of targets in <lambda>()
[all …]
/aosp_15_r20/frameworks/compile/slang/tests/F_reflection3264_variable_mismatch_init/
Dstderr.txt.expect1 …7: error: global variable 'b' is initialized differently for 32-bit targets than for 64-bit targets
2 …8: error: global variable 'd' is initialized differently for 32-bit targets than for 64-bit targets
3 …6: error: global variable 'f' is initialized differently for 32-bit targets than for 64-bit targets
4 …6: error: global variable 'h' is initialized differently for 32-bit targets than for 64-bit targets
5 …8: error: global variable 'j' is initialized differently for 32-bit targets than for 64-bit targets
6 …5: error: global variable 'k' is initialized differently for 32-bit targets than for 64-bit targets
7 …5: error: global variable 'm' is initialized differently for 32-bit targets than for 64-bit targets
8 …6: error: global variable 'n' is initialized differently for 32-bit targets than for 64-bit targets
9 …: error: global variable 'jj' is initialized differently for 32-bit targets than for 64-bit targets
10 …: error: global variable 'kk' is initialized differently for 32-bit targets than for 64-bit targets
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/engine/
H A Dtraining_eager_v1.py32 def _eager_loss_fn(outputs, targets, loss_fn, output_name): argument
34 loss = loss_fn(targets, outputs)
38 def _eager_metrics_fn(model, outputs, targets, sample_weights=None, masks=None): argument
44 targets: The predictions or targets of the given model.
52 targets = nest.flatten(targets)
55 if targets:
56 # Insert None values corresponding to the targets that need to be skipped
58 if len(model._targets) != len(targets):
60 None if t is None else targets.pop(0) for t in model._targets
62 targets = new_targets
[all …]

12345678910>>...497