Home
last modified time | relevance | path

Searched full:make (Results 1 – 25 of 39345) sorted by relevance

12345678910>>...1574

/aosp_15_r20/prebuilts/android-emulator/linux-x86_64/lib/
H A Demu-original-feature-flags.protobuf52 hwconfig { hostgpuinfo { make: "10de" device_id: "0ffa" } } # Quadro K600
53 hwconfig { hostgpuinfo { make: "10de" device_id: "13ba" } } # Quadro K2200
54 hwconfig { hostgpuinfo { make: "10de" device_id: "13bb" } } # Quadro K620
55 hwconfig { hostgpuinfo { make: "10de" device_id: "13bc" } } # Quadro K1200
56 hwconfig { hostgpuinfo { make: "10de" device_id: "1430" } } # Quadro M2000
57 hwconfig { hostgpuinfo { make: "10de" device_id: "13c2" } } # GTX 970
58 hwconfig { hostgpuinfo { make: "1002" device_id: "67df" } } # RX 480 / 470
59 hwconfig { hostgpuinfo { make: "8086" device_id: "0d26" } } # Intel Iris Pro
60 hwconfig { hostgpuinfo { make: "Intel (0x8086)" model: "Intel Iris Pro" } } # Intel Iris Pro (Mac)
62 hwconfig { hostgpuinfo { make: "8086" device_id: "1906" } } # HD 510
[all …]
/aosp_15_r20/prebuilts/android-emulator/darwin-x86_64/lib/
H A Demu-original-feature-flags.protobuf52 hwconfig { hostgpuinfo { make: "10de" device_id: "0ffa" } } # Quadro K600
53 hwconfig { hostgpuinfo { make: "10de" device_id: "13ba" } } # Quadro K2200
54 hwconfig { hostgpuinfo { make: "10de" device_id: "13bb" } } # Quadro K620
55 hwconfig { hostgpuinfo { make: "10de" device_id: "13bc" } } # Quadro K1200
56 hwconfig { hostgpuinfo { make: "10de" device_id: "1430" } } # Quadro M2000
57 hwconfig { hostgpuinfo { make: "10de" device_id: "13c2" } } # GTX 970
58 hwconfig { hostgpuinfo { make: "1002" device_id: "67df" } } # RX 480 / 470
59 hwconfig { hostgpuinfo { make: "8086" device_id: "0d26" } } # Intel Iris Pro
60 hwconfig { hostgpuinfo { make: "Intel (0x8086)" model: "Intel Iris Pro" } } # Intel Iris Pro (Mac)
62 hwconfig { hostgpuinfo { make: "8086" device_id: "1906" } } # HD 510
[all …]
/aosp_15_r20/external/pytorch/test/cpp/tensorexpr/
H A Dtest_registerizer.cpp18 StmtPtr stmt = Block::make( in TEST()
19 {Store::make(a, {0}, 0), in TEST()
20 For::make( in TEST()
24 Block::make( in TEST()
25 {Store::make(a, {0}, Add::make(Load::make(a, {0}), x))}))}); in TEST()
62 StmtPtr stmt = Block::make( in TEST()
63 {Store::make(a, {0}, 0), in TEST()
64 For::make( in TEST()
68 Block::make( in TEST()
69 {Store::make(a, {x}, Add::make(Load::make(a, {x}), x))}))}); in TEST()
[all …]
H A Dtest_loopnest.cpp93 ForPtr stmt1 = For::make( in TEST()
97 For::make( in TEST()
101 For::make(y, 0, 5, Store::make(f, {x_1, y}, func(x_1, y))))); in TEST()
103 ForPtr stmt2 = For::make( in TEST()
107 For::make(y, 0, 5, Store::make(f, {x_2, y}, func(x_2, y)))); in TEST()
108 StmtPtr stmt = Block::make({stmt1, stmt2}); in TEST()
545 StmtPtr stmt = alloc<Block>(std::vector<StmtPtr>({For::make( in TEST()
549 For::make( in TEST()
553 For::make(y, 0, 5, Store::make(f, {x_1, y}, func(x_1, y)))))})); in TEST()
672 auto store1 = Store::make(a_buf, {i, j}, sin(i * j)); in TEST()
[all …]
H A Dtest_memdependency.cpp544 StorePtr aStore = Store::make(a, {0}, 3); in TEST()
545 StorePtr bStore = Store::make(b, {0}, Add::make(Load::make(a, {0}), 1)); in TEST()
547 StmtPtr stmt = Block::make({aStore, bStore}); in TEST()
571 StorePtr aStore = Store::make(a, {0}, 3); in TEST()
572 StorePtr bStore = Store::make(b, {0}, Load::make(a, {0})); in TEST()
573 StorePtr cStore = Store::make(c, {0}, Add::make(Load::make(b, {0}), 1)); in TEST()
575 StmtPtr stmt = Block::make({aStore, bStore, cStore}); in TEST()
606 StorePtr aStore = Store::make(a, {0}, 3); in TEST()
607 StorePtr a2Store = Store::make(a, {0}, 6); in TEST()
608 StorePtr bStore = Store::make(b, {0}, Add::make(Load::make(a, {0}), 1)); in TEST()
[all …]
/aosp_15_r20/external/bazel-skylib/tests/
H A Dnew_sets_tests.bzl28 asserts.true(env, sets.is_equal(sets.make(), sets.make()))
29 asserts.false(env, sets.is_equal(sets.make(), sets.make([1])))
30 asserts.false(env, sets.is_equal(sets.make([1]), sets.make()))
31 asserts.true(env, sets.is_equal(sets.make([1]), sets.make([1])))
32 asserts.false(env, sets.is_equal(sets.make([1]), sets.make([1, 2])))
33 asserts.false(env, sets.is_equal(sets.make([1]), sets.make([2])))
34 asserts.false(env, sets.is_equal(sets.make([1]), sets.make([1, 2])))
37 asserts.true(env, sets.is_equal(sets.make([1, 1]), sets.make([1])))
41 is_equal_test = unittest.make(_is_equal_test)
47 asserts.true(env, sets.is_subset(sets.make(), sets.make()))
[all …]
/aosp_15_r20/external/skia/tests/
H A DPolyUtilsTest.cpp28 *poly.append() = SkPoint::Make(-100, 55); in DEF_TEST()
29 *poly.append() = SkPoint::Make(100, 55); in DEF_TEST()
30 *poly.append() = SkPoint::Make(102.5f, 54.330127f); in DEF_TEST()
46 // make degenerate in DEF_TEST()
93 *poly.append() = SkPoint::Make(-100, 55); in DEF_TEST()
94 *poly.append() = SkPoint::Make(100, 55); in DEF_TEST()
95 *poly.append() = SkPoint::Make(100 + 2.5f, 50 + 4.330127f); in DEF_TEST()
96 *poly.append() = SkPoint::Make(100 + 3.535534f, 50 + 3.535534f); in DEF_TEST()
97 *poly.append() = SkPoint::Make(100 + 4.330127f, 50 + 2.5f); in DEF_TEST()
98 *poly.append() = SkPoint::Make(105, 50); in DEF_TEST()
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/b7/
Db7c7059add23b13a7f9aad787a09e36cd40e78153make/target/product/generic/aosp_shared_system_image/android_common/root && mkdir -p out/soong/.in…
/aosp_15_r20/external/ComputeLibrary/tests/validation/CL/
H A DDirectConvolutionLayer.cpp56 … data_strides = combine(framework::dataset::make("StrideX", 1, 3), framework::dataset::ma…
57 …o data_strides_small = combine(framework::dataset::make("StrideX", 1), framework::dataset::make
58 …= combine(framework::dataset::make("PadX", 0, 1), combine(framework::dataset::make("PadY", 0, 1), …
59 …l = combine(framework::dataset::make("PadX", 0), combine(framework::dataset::make("PadY", 0), fra…
60 …= combine(framework::dataset::make("PadX", 0, 2), combine(framework::dataset::make("PadY", 0, 2), …
61 …= combine(framework::dataset::make("PadX", 0, 3), combine(framework::dataset::make("PadY", 0, 3), …
62 …= combine(framework::dataset::make("PadX", 0, 3), combine(framework::dataset::make("PadY", 0, 3), …
63 …= combine(framework::dataset::make("PadX", 0, 1), combine(framework::dataset::make("PadY", 0, 1), …
73 const auto data_nightly = combine(data, framework::dataset::make("NumKernels", { 1, 4 }));
74 const auto data_nightly_9x9 = combine(data9x9, framework::dataset::make("NumKernels", { 1, 4 })…
[all …]
H A DDepthwiseConvolutionLayer.cpp51 const auto depth_multipliers = framework::dataset::make("DepthMultiplier", { 1, 4 });
52 const auto large_depth_multipliers = framework::dataset::make("DepthMultiplier", { 1, 2, 5, 8 });
55 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
68 …framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), … in TEST_SUITE()
79 … framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(3U, 3U, 2U), 1, DataType::F16),
90 … framework::dataset::make("BiasesInfo", { TensorInfo(TensorShape(2U), 1, DataType::F32),
101 … framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(25U, 11U, 2U), 1, DataType::F32),
112 framework::dataset::make("ConvInfo", { PadStrideInfo(1, 1, 0, 0),
123 framework::dataset::make("DepthMultiplier", { 1,
134 framework::dataset::make("Dilation", { Size2D(1U, 1U),
[all …]
H A DCast.cpp52 …MM8toF32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8), framework::data…
55 …astU8toS8Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
56 …astU8toU16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
57 …astU8toS16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
58 …astU8toU32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
59 …astU8toS32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
60 …astU8toF16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
61 …astU8toF32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
64 …astS8toU8Dataset = combine(framework::dataset::make("DataType", DataType::S8), framework::dataset…
65 …astS8toU16Dataset = combine(framework::dataset::make("DataType", DataType::S8), framework::dataset…
[all …]
H A DDeconvolutionLayer.cpp51 …amework::dataset::make("InputShape", TensorShape{ 10U, 10U, 1U, 1U }) *framework::dataset::make("S…
53 *framework::dataset::make("PadLeft", 3)
54 …rk::dataset::make("PadRight", 4) *framework::dataset::make("PadTop", 3) *framework::dataset::make(…
56 …ework::dataset::make("InputShape", TensorShape{ 640U, 360U, 56U, 1U }) *framework::dataset::make("…
58 *framework::dataset::make("PadLeft", 3)
59 …rk::dataset::make("PadRight", 4) *framework::dataset::make("PadTop", 3) *framework::dataset::make(…
61 …hapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("StrideY", 1, 4) * …
62 … * framework::dataset::make("PadY", 0, 3) * framework::dataset::make("NumKernels", { 3 });
64 …hapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("StrideY", 1, 4) * …
65 … * framework::dataset::make("PadY", 0, 2) * framework::dataset::make("NumKernels", { 3 });
[all …]
H A DPixelWiseMultiplication.cpp49 const auto EmptyActivationFunctionsDataset = framework::dataset::make("Acti…
51 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
56 const auto InPlaceDataSet = framework::dataset::make("InPlace", { false });
66 … framework::dataset::make("DataType1", DataType::DT1)), \
67 … framework::dataset::make("DataType2", DataType::DT2)), \
68 … framework::dataset::make("Scale", std::move(SCALE))), \
70 framework::dataset::make("RoundingPolicy", RoundingPolicy::RP)), ACT), \
94 … framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), in TEST_SUITE()
100 … framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
106 … framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S16),
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/race/testdata/
Dslice_test.go13 ch := make(chan bool, 1)
14 a := make([]int, 2)
24 ch := make(chan bool, 1)
25 a := make([]int, 2)
35 a := make([]int, 10)
36 ch := make(chan bool, 1)
47 ch := make(chan bool, 1)
58 ch := make(chan bool, 1)
68 ch := make(chan bool, 1)
69 a := make([]bool, 1)
[all …]
Dmop_test.go42 var GlobalCh chan int = make(chan int, 2)
64 ch := make(chan int, 2)
81 ch := make(chan int, 1)
99 ch := make(chan bool, 2)
130 ch := make(chan int, 2)
153 ch := make(chan int, 2)
175 ch := make(chan int, 2)
197 ch := make(chan int, 2)
219 ch := make(chan int, 2)
246 ch := make(chan int)
[all …]
Dchan_test.go16 c := make(chan int)
28 c := make(chan int)
40 c := make(chan int, 10)
52 c := make(chan int, 10)
64 c := make(chan int, 10)
81 c := make(chan int, 10)
93 c := make(chan int, 10)
106 c := make(chan int)
123 c := make(chan int)
135 c := make(chan int)
[all …]
/aosp_15_r20/external/ComputeLibrary/tests/validation/NEON/
H A DDepthwiseConvolutionLayer.cpp56 const auto depth_multipliers = framework::dataset::make("DepthMultiplier", { 1, 2, 8 });
57 const auto large_depth_multipliers = framework::dataset::make("DepthMultiplier", { 1, 2, 5, 32 });
60 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
66 const auto input_qinfo_dataset = framework::dataset::make("InputQInfo",
79 …framework::dataset::make("InputInfo", { TensorInfo(TensorShape(32U, 18U, 2U), 1, DataType::F32), … in TEST_SUITE()
91 …framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(3U, 3U, 2U, 2U), 1, DataType::F16…
103 … framework::dataset::make("BiasesInfo", { TensorInfo(TensorShape(2U), 1, DataType::F32),
115 … framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(30U, 16U, 2U), 1, DataType::F32),
127 framework::dataset::make("ConvInfo", { PadStrideInfo(1, 1, 0, 0),
139 framework::dataset::make("DepthMultiplier", { 1,
[all …]
H A DDepthConvertLayer.cpp47 …MM8toF16Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8), framework::data…
48 …MM8toF32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8), framework::data…
49 …MM8toS32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8), framework::data…
50 …toU16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
51 …toS16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
52 …toS32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
53 …toF16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
54 …toF32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
55 …6toU8Dataset = combine(framework::dataset::make("DataType", DataType::U16), framework::datase…
56 …6toU32Dataset = combine(framework::dataset::make("DataType", DataType::U16), framework::datase…
[all …]
/aosp_15_r20/external/ComputeLibrary/tests/validation/dynamic_fusion/gpu/cl/
H A DCast.cpp50 …MM8toF32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8), framework::data…
53 …astU8toS8Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
54 …astU8toU16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
55 …astU8toS16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
56 …astU8toU32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
57 …astU8toS32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
58 …astU8toF16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
59 …astU8toF32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framework::dataset…
62 …astS8toU8Dataset = combine(framework::dataset::make("DataType", DataType::S8), framework::dataset…
63 …astS8toU16Dataset = combine(framework::dataset::make("DataType", DataType::S8), framework::dataset…
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/jit/tensorexpr/
H A Dexpr.cpp9 return Add::make(*this, other); in operator +()
13 return Sub::make(*this, other); in operator -()
17 return Mul::make(*this, other); in operator *()
21 return Div::make(*this, other); in operator /()
25 return Mod::make(*this, other); in operator %()
29 return CompareSelect::make(*this, other, CompareSelectOperation::kEQ); in operator ==()
33 return CompareSelect::make(*this, other, CompareSelectOperation::kNE); in operator !=()
37 return CompareSelect::make(*this, other, CompareSelectOperation::kGT); in operator >()
41 return CompareSelect::make(*this, other, CompareSelectOperation::kGE); in operator >=()
45 return CompareSelect::make(*this, other, CompareSelectOperation::kLT); in operator <()
[all …]
/aosp_15_r20/external/zstd/.github/workflows/
H A Ddev-short-tests.yml21 …run: make -C contrib/linux-kernel test CFLAGS="-Werror -Wunused-const-variable -Wunused-but-set-va…
27 - name: make benchmarking
28 run: make benchmarking
34 - name: make check on 32-bit
37 APT_PACKAGES="gcc-multilib" make apt-install
38 CFLAGS="-m32 -O1 -fstack-protector" make check V=1
44 - name: make check on x32 ABI # https://en.wikipedia.org/wiki/X32_ABI
49 APT_PACKAGES="gcc-multilib" make apt-install
50 CFLAGS="-mx32 -O1 -fstack-protector" make check V=1
58 make c89build V=1
[all …]
/aosp_15_r20/external/zstd/
H A DMakefile53 $(Q)$(MAKE) -C $(PRGDIR) all
54 $(Q)$(MAKE) -C $(TESTDIR) all
58 $(MAKE) -C $(PRGDIR) zstd32
59 $(MAKE) -C $(TESTDIR) all32
63 $(Q)$(MAKE) -C $(ZSTDDIR) $@
67 $(Q)$(MAKE) -C $(PRGDIR) $@
72 $(Q)$(MAKE) -C $(PRGDIR) $@
77 $(MAKE) -C $(ZWRAPDIR) all
84 DEBUGLEVEL=$(DEBUGLEVEL) MOREFLAGS="$(MOREFLAGS)" $(MAKE) -j -C $(PRGDIR) allVariants
85 $(MAKE) -C $(TESTDIR) $@
[all …]
/aosp_15_r20/out/soong/.intermediates/build/make/tools/aconfig/aconfig/aconfig/linux_glibc_x86_64/
Daconfig.clippy.d.raw1make/tools/aconfig/aconfig/aconfig/linux_glibc_x86_64/aconfig.clippy: build/make/tools/aconfig/aco…
3make/tools/aconfig/aconfig/aconfig/linux_glibc_x86_64/aconfig.clippy.d.raw: build/make/tools/aconf…
5 build/make/tools/aconfig/aconfig/src/main.rs:
6 build/make/tools/aconfig/aconfig/src/codegen/mod.rs:
7 build/make/tools/aconfig/aconfig/src/codegen/cpp.rs:
8 build/make/tools/aconfig/aconfig/src/codegen/java.rs:
9 build/make/tools/aconfig/aconfig/src/codegen/rust.rs:
10 build/make/tools/aconfig/aconfig/src/commands.rs:
11 build/make/tools/aconfig/aconfig/src/dump.rs:
12 build/make/tools/aconfig/aconfig/src/storage/mod.rs:
[all …]
Daconfig.d.raw1make/tools/aconfig/aconfig/aconfig/linux_glibc_x86_64/aconfig: build/make/tools/aconfig/aconfig/sr…
3make/tools/aconfig/aconfig/aconfig/linux_glibc_x86_64/aconfig.d.raw: build/make/tools/aconfig/acon…
5 build/make/tools/aconfig/aconfig/src/main.rs:
6 build/make/tools/aconfig/aconfig/src/codegen/mod.rs:
7 build/make/tools/aconfig/aconfig/src/codegen/cpp.rs:
8 build/make/tools/aconfig/aconfig/src/codegen/java.rs:
9 build/make/tools/aconfig/aconfig/src/codegen/rust.rs:
10 build/make/tools/aconfig/aconfig/src/commands.rs:
11 build/make/tools/aconfig/aconfig/src/dump.rs:
12 build/make/tools/aconfig/aconfig/src/storage/mod.rs:
[all …]
/aosp_15_r20/external/cblas/
H A DMakefile7 @ echo "Make sure you are using correct Makefile.in for your system."
19 @ echo "make <target>"
21 @ echo "slib1 --- make an archive of level 1 REAL."
22 @ echo "dlib1 --- make an archive of level 1 DOUBLE PRECISION."
23 @ echo "clib1 --- make an archive of level 1 COMPLEX."
24 @ echo "zlib1 --- make an archive of level 1 COMPLEX*16."
25 @ echo "alllib1 - make an archive of level 1 all precisions."
27 @ echo "slib2 --- make an archive of level 2 REAL."
28 @ echo "dlib2 --- make an archive of level 2 DOUBLE PRECSION."
29 @ echo "clib2 --- make an archive of level 2 COMPLEX."
[all …]

12345678910>>...1574