Home
last modified time | relevance | path

Searched full:framework (Results 1 – 25 of 10025) sorted by relevance

12345678910>>...401

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DClassPathResolver.java62 …* device paths (e.g. "/system/framework/framework.jar"). The entry wil…
256 "/system/framework/core.jar", in getDefaultBootClassPath()
257 "/system/framework/ext.jar", in getDefaultBootClassPath()
258 "/system/framework/framework.jar", in getDefaultBootClassPath()
259 "/system/framework/android.policy.jar", in getDefaultBootClassPath()
260 "/system/framework/services.jar"); in getDefaultBootClassPath()
263 "/system/framework/core.jar", in getDefaultBootClassPath()
264 "/system/framework/bouncycastle.jar", in getDefaultBootClassPath()
265 "/system/framework/ext.jar", in getDefaultBootClassPath()
266 "/system/framework/framework.jar", in getDefaultBootClassPath()
[all …]
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/analysis/
DClassPathResolver.java60 …* device paths (e.g. "/system/framework/framework.jar"). The entry wil…
254 "/system/framework/core.jar", in getDefaultBootClassPath()
255 "/system/framework/ext.jar", in getDefaultBootClassPath()
256 "/system/framework/framework.jar", in getDefaultBootClassPath()
257 "/system/framework/android.policy.jar", in getDefaultBootClassPath()
258 "/system/framework/services.jar"); in getDefaultBootClassPath()
261 "/system/framework/core.jar", in getDefaultBootClassPath()
262 "/system/framework/bouncycastle.jar", in getDefaultBootClassPath()
263 "/system/framework/ext.jar", in getDefaultBootClassPath()
264 "/system/framework/framework.jar", in getDefaultBootClassPath()
[all …]
/external/ComputeLibrary/tests/framework/
DAsserts.h28 #include "Framework.h"
39 namespace framework
67 arm_compute::test::framework::Framework::get().print_test_info(msg); in ARM_COMPUTE_PRINT_INFO()
68 arm_compute::test::framework::Framework::get().log_info(msg.str()); in ARM_COMPUTE_PRINT_INFO()
69 arm_compute::test::framework::Framework::get().clear_test_info(); in ARM_COMPUTE_PRINT_INFO()
76 arm_compute::test::framework::Framework::get().add_test_info(info.str()); \
89 …<< std::boolalpha << arm_compute::test::framework::make_printable(x) …
91 …<< std::boolalpha << arm_compute::test::framework::make_printable(y) …
93 …arm_compute::test::framework::Framework::get().print_test_info(msg); …
96 …arm_compute::test::framework::Framework::get().clear_test_info(); …
[all …]
/external/ComputeLibrary/tests/validation/CL/
DDepthwiseConvolutionLayer.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
51 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",
67 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(zip(zip( in TEST_SUITE()
68framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), … in TEST_SUITE()
79framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(3U, 3U, 2U), 1, DataType::F16),
90framework::dataset::make("BiasesInfo", { TensorInfo(TensorShape(2U), 1, DataType::F32),
[all …]
DDirectConvolutionLayer.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
56 const auto data_strides = combine(framework::dataset::make("StrideX", 1, 3), framework::da…
57 const auto data_strides_small = combine(framework::dataset::make("StrideX", 1), framework::datas…
58 …_ksize_one = combine(framework::dataset::make("PadX", 0, 1), combine(framework::dataset::ma…
59 …ata_ksize_one_small = combine(framework::dataset::make("PadX", 0), combine(framework::dataset::ma…
60 …_ksize_three = combine(framework::dataset::make("PadX", 0, 2), combine(framework::dataset::ma…
61 …_ksize_five = combine(framework::dataset::make("PadX", 0, 3), combine(framework::dataset::ma…
62 …_ksize_nine = combine(framework::dataset::make("PadX", 0, 3), combine(framework::dataset::ma…
[all …]
DCast.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
52 …nst auto CastQASYMM8toF32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8)…
55 const auto CastU8toS8Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
56 const auto CastU8toU16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
57 const auto CastU8toS16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
58 const auto CastU8toU32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
59 const auto CastU8toS32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
60 const auto CastU8toF16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
[all …]
DPixelWiseMultiplication.cpp29 #include "tests/framework/Macros.h"
49 const auto EmptyActivationFunctionsDataset = framework::dataset::make("Acti…
51 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
56 const auto InPlaceDataSet = framework::dataset::make("InPlace", { false });
63 …FIXTURE_DATA_TEST_CASE(TEST_NAME, CLPixelWiseMultiplication##FIXTURE, framework::DatasetMode::MODE…
66framework::dataset::make("DataType1", DataType::DT1)), \
67framework::dataset::make("DataType2", DataType::DT2)), \
68framework::dataset::make("Scale", std::move(SCALE))), \
70 framework::dataset::make("RoundingPolicy", RoundingPolicy::RP)), ACT), \
93 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip( in TEST_SUITE()
[all …]
DPoolingLayer.cpp33 #include "tests/framework/Asserts.h"
34 #include "tests/framework/Macros.h"
35 #include "tests/framework/datasets/Datasets.h"
48 const auto PoolingLayerDatasetFP = combine(combine(combine(datasets::PoolingTypes(), framework::dat…
49framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0), PadS…
50framework::dataset::make("ExcludePadding", { true, false }));
52 const auto PoolingLayerDatasetFPSmall = combine(combine(combine(datasets::PoolingTypes(), framework
53framework::dataset::make("PadStride", { PadStrideInfo(1, 1, 0, 0), PadStrideInfo(2, 1, 0, 0) })),
54framework::dataset::make("ExcludePadding", { true, false }));
57 const auto PoolingLayerDatasetQASYMM8 = combine(concat(combine(combine(framework::dataset::make("Po…
[all …]
DDepthwiseConvolutionLayerNative.cpp33 #include "tests/framework/Asserts.h"
34 #include "tests/framework/Macros.h"
35 #include "tests/framework/datasets/Datasets.h"
65 const auto width_values_precommit = framework::dataset::make("width", { 1U, 33U } );
68 const auto width_values_nightly = framework::dataset::make("width", { 53U, 47U } );
71 const auto height_values_precommit = framework::dataset::make("height", { 19U } );
74 const auto height_values_nightly = framework::dataset::make("height", { 39U, 43U } );
77 const auto channel_values_precommit = framework::dataset::make("channels", { 15U });
80 const auto channel_values_nightly = framework::dataset::make("channels", { 33U, 19U });
83 const auto channel_values_export_to_cl_image_precommit = framework::dataset::make("channels", { 16U…
[all …]
DGEMMLowp.cpp35 #include "tests/framework/Asserts.h"
36 #include "tests/framework/Macros.h"
37 #include "tests/framework/datasets/Datasets.h"
58 FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMLowpMatrixMultiplyCoreFixture, framework::DatasetMode::ALL, … in FIXTURE_DATA_TEST_CASE()
64 FIXTURE_DATA_TEST_CASE(RunLarge, CLGEMMLowpMatrixMultiplyCoreFixture, framework::DatasetMode::NIGHT… in FIXTURE_DATA_TEST_CASE()
74 …l, CLGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixtureBatchedUnsigned, framework::DatasetMode::AL… in TEST_SUITE()
76 framework::dataset::make("DataType", { DataType::QASYMM8 })), in TEST_SUITE()
77 framework::dataset::make("bool", { false })))
86 …all, CLGEMMLowpMatrixMultiplyCoreFusedOffsetOutputFixtureBatchedSigned, framework::DatasetMode::AL…
88framework::dataset::make("DataType", { DataType::QASYMM8_SIGNED })),
[all …]
DDeconvolutionLayer.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
51 …_small_asymm = framework::dataset::make("InputShape", TensorShape{ 10U, 10U, 1U, 1U }) *framework:…
53 *framework::dataset::make("PadLeft", 3)
54 …*framework::dataset::make("PadRight", 4) *framework::dataset::make("PadTop", 3) *framework::datase…
56 …large_asymm = framework::dataset::make("InputShape", TensorShape{ 640U, 360U, 56U, 1U }) *framewor…
58 *framework::dataset::make("PadLeft", 3)
59 …*framework::dataset::make("PadRight", 4) *framework::dataset::make("PadTop", 3) *framework::datase…
61 …mallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("…
[all …]
DWinograd.cpp38 #include "tests/framework/Asserts.h"
39 #include "tests/framework/Macros.h"
40 #include "tests/framework/datasets/Datasets.h"
63 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
71 const auto ActivationFunctionsSmallDataset = framework::dataset::make("ActivationInfo",
87 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip( in TEST_SUITE()
88 framework::dataset::make("InputInfo", { in TEST_SUITE()
95 framework::dataset::make("WeightsInfo", {
102 framework::dataset::make("BiasesInfo", {
109 framework::dataset::make("OutputInfo", {
[all …]
DIm2Col.cpp28 #include "tests/framework/Asserts.h"
29 #include "tests/framework/Macros.h"
30 #include "tests/framework/datasets/Datasets.h"
58 TEST_CASE(Negative, framework::DatasetMode::ALL) in TEST_CASE()
67 ARM_COMPUTE_EXPECT(bool(status) == false, framework::LogLevel::ERRORS); in TEST_CASE()
77 ARM_COMPUTE_EXPECT(bool(status) == false, framework::LogLevel::ERRORS); in TEST_CASE()
88 ARM_COMPUTE_EXPECT(bool(status) == false, framework::LogLevel::ERRORS); in TEST_CASE()
100 ARM_COMPUTE_EXPECT(bool(status) == false, framework::LogLevel::ERRORS); in TEST_CASE()
112 ARM_COMPUTE_EXPECT(bool(status) == false, framework::LogLevel::ERRORS); in TEST_CASE()
122 ARM_COMPUTE_EXPECT(bool(status) == false, framework::LogLevel::ERRORS); in TEST_CASE()
[all …]
DArithmeticAddition.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
50 const auto EmptyActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
52 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
57 const auto InPlaceDataSet = framework::dataset::make("InPlace", { false, true });
58 const auto OutOfPlaceDataSet = framework::dataset::make("InPlace", { false });
66 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip( in TEST_SUITE()
67framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), in TEST_SUITE()
71framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
[all …]
DArithmeticSubtraction.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
50 const auto EmptyActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
52 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
57 const auto InPlaceDataSet = framework::dataset::make("InPlace", { false, true });
58 const auto OutOfPlaceDataSet = framework::dataset::make("InPlace", { false });
66 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip( in TEST_SUITE()
67framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), in TEST_SUITE()
71framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
[all …]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/
DDexEntryFinderTest.java61 entries.put("/system/framework/framework.jar", dexFile1); in testNormalStuff()
63 entries.put("/system/framework/framework.jar:classes2.dex", dexFile2); in testNormalStuff()
66 … Assert.assertEquals(dexFile1, testFinder.findEntry("/system/framework/framework.jar", true)); in testNormalStuff()
68 assertEntryNotFound(testFinder, "system/framework/framework.jar", true); in testNormalStuff()
69 assertEntryNotFound(testFinder, "/framework/framework.jar", true); in testNormalStuff()
70 assertEntryNotFound(testFinder, "framework/framework.jar", true); in testNormalStuff()
71 assertEntryNotFound(testFinder, "/framework.jar", true); in testNormalStuff()
72 assertEntryNotFound(testFinder, "framework.jar", true); in testNormalStuff()
74 … Assert.assertEquals(dexFile1, testFinder.findEntry("system/framework/framework.jar", false)); in testNormalStuff()
75 Assert.assertEquals(dexFile1, testFinder.findEntry("/framework/framework.jar", false)); in testNormalStuff()
[all …]
/external/ComputeLibrary/tests/validation/NEON/
DDepthwiseConvolutionLayer.cpp33 #include "tests/framework/Asserts.h"
34 #include "tests/framework/Macros.h"
35 #include "tests/framework/datasets/Datasets.h"
56 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",
78 DATA_TEST_CASE(Validate3x3, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(zip(zip( in TEST_SUITE()
79framework::dataset::make("InputInfo", { TensorInfo(TensorShape(32U, 18U, 2U), 1, DataType::F32), … in TEST_SUITE()
91framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(3U, 3U, 2U, 2U), 1, DataType::F16…
[all …]
DDepthConvertLayer.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
47 …hConvertLayerQASYMM8toF16Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8)…
48 …hConvertLayerQASYMM8toF32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8)…
49 …hConvertLayerQASYMM8toS32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8)…
50 …epthConvertLayerU8toU16Dataset = combine(framework::dataset::make("DataType", DataType::U8),
51 …epthConvertLayerU8toS16Dataset = combine(framework::dataset::make("DataType", DataType::U8),
52 …epthConvertLayerU8toS32Dataset = combine(framework::dataset::make("DataType", DataType::U8),
53 …epthConvertLayerU8toF16Dataset = combine(framework::dataset::make("DataType", DataType::U8),
[all …]
DDeconvolutionLayer.cpp32 #include "tests/framework/Asserts.h"
33 #include "tests/framework/Macros.h"
34 #include "tests/framework/datasets/Datasets.h"
54 …mallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("…
55 … * framework::dataset::make("PadY", 0, 3) * framework::dataset::make("NumKernels", { 3 });
57 …mallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 4) * framework::dataset::make("…
58 … * framework::dataset::make("PadY", 0, 2) * framework::dataset::make("NumKernels", { 3 });
60 …mallDeconvolutionShapes() * framework::dataset::make("StrideX", 1, 2) * framework::dataset::make("…
61 …* framework::dataset::make("PadRight", 0, 1) * framework::dataset::make("PadTop", 0, 1) * framewor…
63 …_small_asymm = framework::dataset::make("InputShape", TensorShape{ 10U, 10U, 1U, 1U }) *framework:…
[all …]
DQuantizationLayer.cpp31 #include "tests/framework/Asserts.h"
32 #include "tests/framework/Macros.h"
33 #include "tests/framework/datasets/Datasets.h"
58 DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip( in TEST_SUITE()
59framework::dataset::make("InputInfo", { TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::QA… in TEST_SUITE()
64framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F3…
69 framework::dataset::make("Expected", { false, false, false, true})),
72 …le(false), &output_info.clone()->set_is_resizable(false))) == expected, framework::LogLevel::ERROR…
86 FIXTURE_DATA_TEST_CASE(RunSmallQASYMM8, NEQuantizationLayerQASYMM8Fixture<float>, framework::Datase… in TEST_SUITE()
87 framework::dataset::make("DataType", DataType::F32)), in TEST_SUITE()
[all …]
DConvolutionLayer.cpp40 #include "tests/framework/Asserts.h"
41 #include "tests/framework/Macros.h"
42 #include "tests/framework/datasets/Datasets.h"
87 const auto CNNDataTypes = framework::dataset::make("DataType",
95 const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
102 const auto QuantizationData = framework::dataset::make("QuantizationInfo",
116 DATA_TEST_CASE(ValidateConvolutionMethod, framework::DatasetMode::ALL, zip(zip(zip(zip(zip( in TEST_SUITE()
117framework::dataset::make("InputInfo", { TensorInfo(TensorShape(18U, 18U, 32U), 1, DataType::F32), in TEST_SUITE()
122framework::dataset::make("WeightsInfo", { TensorInfo(TensorShape(3U, 3U, 32U, 21U), 1, DataType::F…
127framework::dataset::make("OutputInfo", { TensorInfo(TensorShape(16U, 16U, 21U), 1, DataType::F32),
[all …]
/external/google-smali/dexlib2/src/test/java/com/android/tools/smali/dexlib2/
DDexEntryFinderTest.java59 entries.put("/system/framework/framework.jar", dexFile1); in testNormalStuff()
61 entries.put("/system/framework/framework.jar:classes2.dex", dexFile2); in testNormalStuff()
64 …Assert.assertEquals(dexFile1, testFinder.findEntry("/system/framework/framework.jar", true).getDex… in testNormalStuff()
66 assertEntryNotFound(testFinder, "system/framework/framework.jar", true); in testNormalStuff()
67 assertEntryNotFound(testFinder, "/framework/framework.jar", true); in testNormalStuff()
68 assertEntryNotFound(testFinder, "framework/framework.jar", true); in testNormalStuff()
69 assertEntryNotFound(testFinder, "/framework.jar", true); in testNormalStuff()
70 assertEntryNotFound(testFinder, "framework.jar", true); in testNormalStuff()
72 …Assert.assertEquals(dexFile1, testFinder.findEntry("system/framework/framework.jar", false).getDex… in testNormalStuff()
73 …Assert.assertEquals(dexFile1, testFinder.findEntry("/framework/framework.jar", false).getDexFile()… in testNormalStuff()
[all …]
/external/ComputeLibrary/tests/validation/dynamic_fusion/gpu/cl/
DCast.cpp31 #include "tests/framework/Macros.h"
32 #include "tests/framework/datasets/Datasets.h"
50 …nst auto CastQASYMM8toF32Dataset = combine(framework::dataset::make("DataType", DataType::QASYMM8)…
53 const auto CastU8toS8Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
54 const auto CastU8toU16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
55 const auto CastU8toS16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
56 const auto CastU8toU32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
57 const auto CastU8toS32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
58 const auto CastU8toF16Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
59 const auto CastU8toF32Dataset = combine(framework::dataset::make("DataType", DataType::U8), framewo…
[all …]
/external/tensorflow/tensorflow/python/framework/
Dframework_lib.py20 from tensorflow.python.framework.device import DeviceSpec
21 from tensorflow.python.framework.ops import Graph
22 from tensorflow.python.framework.ops import Operation
23 from tensorflow.python.framework.ops import Tensor
24 from tensorflow.python.framework.ops import IndexedSlices
26 from tensorflow.python.framework.sparse_tensor import SparseTensor
27 from tensorflow.python.framework.sparse_tensor import SparseTensorValue
30 from tensorflow.python.framework.ops import device
31 from tensorflow.python.framework.ops import container
32 from tensorflow.python.framework.ops import name_scope
[all …]
/external/angle/src/tests/deqp_support/
Ddeqp.gni11 "$deqp_path/framework/platform/lnx",
12 "$deqp_path/framework/platform/lnx/X11",
13 "$deqp_path/framework/platform/null",
14 "$deqp_path/framework/platform/win32",
15 "$deqp_path/framework/xexml",
1460 "$deqp_path/framework/delibs/debase/deDefs.c",
1461 "$deqp_path/framework/delibs/debase/deDefs.h",
1462 "$deqp_path/framework/delibs/debase/deFloat16.c",
1463 "$deqp_path/framework/delibs/debase/deFloat16.h",
1464 "$deqp_path/framework/delibs/debase/deInt32.c",
[all …]

12345678910>>...401