/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | path.h | 92 inline constexpr Path operator|(Path p, Path q) { 97 inline constexpr Path operator&(Path p, Path q) { 102 inline constexpr Path operator^(Path p, Path q) { 107 inline constexpr Path operator~(Path p) { 145 constexpr Path kDefaultArchPaths = Path::kNeon | Path::kNeonDotprod; 146 constexpr Path kExtraArchPaths = Path::kNone; 148 constexpr Path kDefaultArchPaths = Path::kNeon; 149 constexpr Path kExtraArchPaths = Path::kNone; 151 constexpr Path kDefaultArchPaths = Path::kAvx | Path::kAvx2Fma | Path::kAvx512; 152 constexpr Path kExtraArchPaths = Path::kNone; [all …]
|
A D | ctx.cc | 61 if (paths == Path::kNone) { in SetRuntimeEnabledPaths() 87 Path DetectRuntimeSupportedPaths(Path paths_to_detect, CpuInfo* cpuinfo) { in DetectRuntimeSupportedPaths() 122 maybe_add(Path::kAvx, in DetectRuntimeSupportedPaths() 124 maybe_add(Path::kAvx2Fma, in DetectRuntimeSupportedPaths() 126 maybe_add(Path::kAvx512, in DetectRuntimeSupportedPaths() 137 Path::kNone); in DetectRuntimeSupportedPaths() 143 Path Ctx::GetRuntimeEnabledPaths() { in GetRuntimeEnabledPaths() 151 if (*paths != Path::kNone) { in GetRuntimeEnabledPaths() 156 Path paths_bitfield = static_cast<Path>(GetHexIntEnvVarOrZero("RUY_PATHS")); in GetRuntimeEnabledPaths() 157 if (paths_bitfield != Path::kNone) { in GetRuntimeEnabledPaths() [all …]
|
A D | ctx_test.cc | 29 EXPECT_NE(ruy_paths, Path::kNone); in TEST() 30 EXPECT_EQ(ruy_paths & Path::kStandardCpp, Path::kStandardCpp); in TEST() 36 ctx.SetRuntimeEnabledPaths(Path::kAvx2Fma); in TEST() 38 EXPECT_EQ(ruy_paths, Path::kStandardCpp | Path::kAvx2Fma); in TEST() 45 ctx.SetRuntimeEnabledPaths(Path::kNeonDotprod); in TEST() 47 EXPECT_EQ(ruy_paths, Path::kStandardCpp | Path::kNeonDotprod); in TEST() 53 EXPECT_EQ(ruy_paths & Path::kStandardCpp, Path::kStandardCpp); in TEST() 55 EXPECT_EQ(ruy_paths & Path::kNeon, Path::kNeon); in TEST()
|
A D | kernel_arm.h | 38 RUY_INHERIT_KERNEL(Path::kStandardCpp, Path::kNeon) 39 RUY_INHERIT_KERNEL(Path::kNeon, Path::kNeonDotprod) 57 static constexpr Path kPath = Path::kNeon; 85 static constexpr Path kPath = Path::kNeon; 110 static constexpr Path kPath = Path::kNeonDotprod; 144 struct Kernel<Path::kNeon, float, float, float, float> { 145 static constexpr Path kPath = Path::kNeon; 170 struct Kernel<Path::kNeon, float, float, float, float> { 171 static constexpr Path kPath = Path::kNeon; 193 struct Kernel<Path::kNeonDotprod, float, float, float, float> { [all …]
|
A D | ctx.h | 32 enum class Path : std::uint8_t; 45 Path last_used_path() const; 61 Path GetRuntimeEnabledPaths(); 72 void SetRuntimeEnabledPaths(Path paths); 74 Path SelectPath(Path compiled_paths);
|
A D | create_trmul_params.h | 76 static void Run(Path) { in Run() 88 template <Path ThePath, typename SrcScalar, typename AccumScalar, 95 static void Run(Path expected_path) { 116 void CheckKernelPath(Path expected_path) { 120 template <Path ThePath, typename LhsScalar, typename RhsScalar, 197 static constexpr Path kCurrentPath = static_cast<Path>(1 << BitNumber); 198 static void Search(Path the_path, TrMulParams* params) { 214 static void Search(Path the_path, TrMulParams* params) { 223 static constexpr Path kCurrentPath = static_cast<Path>(1 << BitNumber); 224 static void Search(Path the_path, TrMulParams* params) { [all …]
|
A D | kernel_x86.h | 34 RUY_INHERIT_KERNEL(Path::kStandardCpp, Path::kAvx2Fma) 35 RUY_INHERIT_KERNEL(Path::kStandardCpp, Path::kAvx) 36 RUY_INHERIT_KERNEL(Path::kAvx2Fma, Path::kAvx512) 43 static constexpr Path kPath = Path::kAvx512; 68 static constexpr Path kPath = Path::kAvx512; 94 static constexpr Path kPath = Path::kAvx2Fma; 119 static constexpr Path kPath = Path::kAvx2Fma; 144 static constexpr Path kPath = Path::kAvx; 169 static constexpr Path kPath = Path::kAvx2Fma; 202 template <Path path> [all …]
|
A D | ctx_impl.h | 61 Path last_used_path_ = Path::kNone; 75 Path runtime_enabled_paths_ = Path::kNone;
|
A D | frontend.h | 45 template <Path CompiledPaths, typename LhsScalar, typename RhsScalar, 53 static_assert(CompiledPaths != Path::kNone, "Must compile at least one Path"); in MulFrontEndUpToCreateTrMulParams() 55 (CompiledPaths & ~kAllPathsIncludingInternalVariants) == Path::kNone, in MulFrontEndUpToCreateTrMulParams() 80 template <Path CompiledPaths, typename LhsScalar, typename RhsScalar,
|
A D | context.h | 28 enum class Path : std::uint8_t; 44 Path last_used_path() const; 91 void set_runtime_enabled_paths(Path paths);
|
A D | kernel.h | 39 template <Path tPath, typename tLhsScalar, typename tRhsScalar, 43 static constexpr Path kPath = tPath; 141 template <Path ThePath> 145 struct StandardCppKernelLayout<Path::kStandardCpp> { 152 struct StandardCppKernelLayout<Path::kInternalStandardCppVariant1> { 159 struct StandardCppKernelLayout<Path::kInternalStandardCppVariant2> { 166 struct StandardCppKernelLayout<Path::kInternalStandardCppVariant3> { 174 template <Path ThePath, typename LhsScalar, typename RhsScalar, 185 static constexpr Path kPath = ThePath;
|
A D | pack_x86.h | 36 RUY_INHERIT_PACK(Path::kStandardCpp, Path::kAvx) 37 RUY_INHERIT_PACK(Path::kAvx, Path::kAvx2Fma) 38 RUY_INHERIT_PACK(Path::kAvx2Fma, Path::kAvx512) 40 RUY_USE_MEMCPY_ROWMAJOR_FLOAT_PACK(Path::kAvx2Fma, 8) 44 struct PackedTypeImpl<Path::kAvx, std::uint8_t> { 53 struct PackedTypeImpl<Path::kAvx512, std::uint8_t> { 423 template <Path path> 429 template <Path path> 435 template <Path path> 442 template <Path path> [all …]
|
A D | pack_common.h | 47 template <Path ThePath, typename Scalar> 52 template <Path ThePath, typename Scalar> 60 template <Path ThePath, typename FixedKernelLayout, typename Scalar, 100 template <Path ThePath, int KernelCols>
|
A D | pack_arm.h | 36 RUY_INHERIT_PACK(Path::kStandardCpp, Path::kNeon) 37 RUY_INHERIT_PACK(Path::kNeon, Path::kNeonDotprod) 39 RUY_USE_MEMCPY_ROWMAJOR_FLOAT_PACK(Path::kNeon, 8) 41 RUY_USE_MEMCPY_ROWMAJOR_FLOAT_PACK(Path::kNeon, 4) 45 struct PackedTypeImpl<Path::kNeon, std::uint8_t> { 49 struct PackedTypeImpl<Path::kNeonDotprod, std::uint8_t> { 143 struct PackImpl<Path::kNeon, FixedKernelLayout<Order::kColMajor, 16, 4>, Scalar, 275 struct PackImpl<Path::kNeonDotprod, FixedKernelLayout<Order::kColMajor, 4, 8>, 363 struct PackImpl<Path::kNeon, FixedKernelLayout<Order::kRowMajor, 1, 8>, float, 439 struct PackImpl<Path::kNeon, FixedKernelLayout<Order::kRowMajor, 1, 4>, float, [all …]
|
A D | context.cc | 34 Path Context::last_used_path() const { return ctx().last_used_path(); } in last_used_path() 54 void Context::set_runtime_enabled_paths(Path paths) { in set_runtime_enabled_paths()
|
A D | kernel_avx.cc | 89 template <Path path> 96 template <Path path> 122 template <Path path> 132 template <Path path> 143 template <Path path> 154 template <Path path> 165 template <Path path> 176 template <Path path> 185 template <Path path> 220 template <Path path> [all …]
|
A D | pack_avx2_fma.cc | 57 PackImpl<Path::kAvx2Fma, FixedKernelLayout<Order::kColMajor, 4, 8>, 61 PackImpl<Path::kAvx2Fma, FixedKernelLayout<Order::kRowMajor, 1, 8>, float, 379 t0 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr0); 380 t4 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr4); 381 t1 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr1); 382 t5 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr5); 383 t2 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr2); 384 t6 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr6); 385 t3 = MaskLoadu<Path::kAvx2Fma>(available_src_rows, zero_point, src_ptr3); 538 inline __m256i CompareGreaterThan<Path::kAvx2Fma>(const __m256i& a, [all …]
|
A D | pack.h | 105 template <Path ThePath, typename FixedKernelLayout, typename Scalar, 135 template <Path ThePath, typename FixedKernelLayout, typename Scalar,
|
A D | pack_avx.cc | 56 PackImpl<Path::kAvx, FixedKernelLayout<Order::kColMajor, 4, 8>, std::int8_t, 60 PackImpl<Path::kAvx, FixedKernelLayout<Order::kRowMajor, 1, 8>, float, 521 t0 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr0); 522 t4 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr4); 523 t1 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr1); 524 t5 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr5); 525 t2 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr2); 526 t6 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr6); 527 t3 = MaskLoadu<Path::kAvx>(available_src_rows, zero_point, src_ptr3); 677 inline __m256i CompareGreaterThan<Path::kAvx>(const __m256i& a, [all …]
|
A D | perchannel_buffers_reallocation_test.cc | 12 constexpr Path kPath = Path::kInternalStandardCppVariant3;
|
A D | context_test.cc | 28 EXPECT_EQ(context.last_used_path(), Path::kNone); in TEST()
|
/AliOS-Things-master/components/jsoncpp/ |
A D | CMakeCache.txt | 17 //Path to a program. 20 //Path to a program. 23 //Path to a program. 65 //Path to a program. 89 //Path to a program. 92 //Path to a program. 115 //Path to a program. 118 //Path to a program. 121 //Path to a program. 148 //Path to a program. [all …]
|
/AliOS-Things-master/components/SDL2/src/filesystem/winrt/ |
A D | SDL_sysfilesystem.cpp | 51 path = Windows::ApplicationModel::Package::Current->InstalledLocation->Path->Data(); in SDL_WinRTGetFSPathUNICODE() 60 path = ApplicationData::Current->LocalFolder->Path->Data(); in SDL_WinRTGetFSPathUNICODE() 70 path = ApplicationData::Current->RoamingFolder->Path->Data(); in SDL_WinRTGetFSPathUNICODE() 79 path = ApplicationData::Current->TemporaryFolder->Path->Data(); in SDL_WinRTGetFSPathUNICODE()
|
/AliOS-Things-master/components/jsoncpp/include/json/ |
A D | forwards.h | 34 class Path; variable
|
/AliOS-Things-master/components/oss/src/ |
A D | ServiceRequest.cc | 31 std::string ServiceRequest::Path() const in Path() function in ServiceRequest
|