/external/tensorflow/tensorflow/core/kernels/ |
D | eigen_benchmark_cpu_test.cc | 120 #define BM_SPATIAL_NAME(prefix, NT, N, H, W, C, FC, FH, FW) \ argument 121 BM_##prefix##_CPU_##NT##T_in_##N##_##H##_##W##_##C##_f_##FC##_##FH##_##FW 123 #define BM_SpatialConvolution(NT, N, H, W, C, FC, FH, FW, LABEL) \ argument 125 FW)(::testing::benchmark::State & state) { \ 127 SpatialConvolution(state, NT, N, H, W, C, FC, FH, FW); \ 129 BENCHMARK(BM_SPATIAL_NAME(SpatialConvolution, NT, N, H, W, C, FC, FH, FW)) 131 #define BM_SpatialConvolutionBwdInput(NT, N, H, W, C, FC, FH, FW, LABEL) \ argument 133 FH, FW)(::testing::benchmark::State & state) { \ 135 SpatialConvolutionBackwardInput(state, NT, N, H, W, C, FC, FH, FW); \ 138 BM_SPATIAL_NAME(SpatialConvolutionBwdInput, NT, N, H, W, C, FC, FH, FW)) [all …]
|
D | conv_ops_benchmark_test.cc | 317 #define BM_NAME(name, type, N, H, W, C, FW, FH, FC) \ argument 318 name##_##type##_##N##_##H##_##W##_##C##_##FW##_##FH##_##FC 320 #define BM_Conv2D(N, H, W, C, FW, FH, FC, type, LABEL) \ argument 321 static void BM_NAME(BM_Conv2D, type, N, H, W, C, FW, FH, \ 323 test::Benchmark(#type, Conv2D<float>(N, H, W, C, FW, FH, FC).graph, \ 328 BENCHMARK(BM_NAME(BM_Conv2D, type, N, H, W, C, FW, FH, FC)) \ 331 #define BM_Conv2DWithBias(N, H, W, C, FW, FH, FC, type, LABEL) \ argument 332 static void BM_NAME(BM_Conv2DWithBias, type, N, H, W, C, FW, FH, \ 335 Conv2DWithBias<float>(N, H, W, C, FW, FH, FC).graph, \ 340 BENCHMARK(BM_NAME(BM_Conv2DWithBias, type, N, H, W, C, FW, FH, FC)) \ [all …]
|
D | conv_grad_filter_ops_benchmark_test.cc | 112 #define BM_NAME(name, type, T, FMT, N, H, W, C, FH, FW, FC, SH, SW, PADDING) \ argument 114 f##FH##x##FW##x##FC##_##s##SH##x##SW##_##PADDING) 116 #define BM_Conv2DBwdFilter(T, FMT, N, H, W, C, FH, FW, FC, SH, SW, PADDING, \ argument 119 FW, FC, SH, SW, \ 122 Conv2DBackpropFilter<T>(N, H, W, C, FH, FW, FC, SH, SW, \ 129 BENCHMARK(BM_NAME(BM_Conv2DBackpropFilter, type, T, FMT, N, H, W, C, FH, FW, \
|
D | conv_grad_input_ops_benchmark_test.cc | 111 #define BM_NAME(name, type, T, FMT, N, H, W, C, FH, FW, FC, SH, SW, PADDING) \ argument 113 f##FH##x##FW##x##FC##_##s##SH##x##SW##_##PADDING) 115 #define BM_Conv2DBwdInput(T, FMT, N, H, W, C, FW, FH, FC, SH, SW, PADDING, \ argument 118 FW, FC, SH, SW, \ 121 Conv2DBackpropInput<T>(N, H, W, C, FH, FW, FC, SH, SW, \ 127 BENCHMARK(BM_NAME(BM_Conv2DBackpropInput, type, T, FMT, N, H, W, C, FH, FW, \
|
D | eigen_spatial_convolutions_test.cc | 1763 #define BM_RHS_NAME(prefix, T, N, H, W, C, FC, FH, FW, PAD, SH, SW, ISH, ISW, \ argument 1766 BM_##prefix##_##T##_##N##_##H##x##W##_IC##C##_FC##FC##_##FH##x##FW, \ 1769 #define BM_PackRhs(T, N, H, W, C, FC, FH, FW, PAD, SH, SW, ISH, ISW, BR, BC) \ argument 1770 static void BM_RHS_NAME(PackRhs, T, N, H, W, C, FC, FH, FW, PAD, SH, SW, \ 1773 PackRhsHelper<T>(state, N, H, W, C, FC, FH, FW, PADDING_##PAD, SH, SW, \ 1776 BENCHMARK(BM_RHS_NAME(PackRhs, T, N, H, W, C, FC, FH, FW, PAD, SH, SW, ISH, \ 2012 #define BM_LHS_NAME(prefix, T, C, FC, FH, FW, BR, BC) \ argument 2013 BM_CONCAT(BM_##prefix##_##T##_##C##_FC##FC##_##FH##x##FW, _B##BR##x##BC) 2015 #define BM_PackLhs(T, C, FC, FH, FW, BR, BC) \ argument 2016 static void BM_LHS_NAME(PackLhs, T, C, FC, FH, FW, BR, \ [all …]
|
/external/tensorflow/tensorflow/core/kernels/mkl/ |
D | mkl_conv_ops_test.cc | 294 #define BM_NAME(p, type, N, H, W, C, FC, FH, FW) \ argument 295 BM_CONCAT(BM_##p##_##type##_in_##N##_##H##_##W##_##C, _f_##FC##_##FH##_##FW) 300 #define BM_Conv2DT(kind, N, H, W, C, FC, FH, FW, type, LABEL) \ argument 302 FW)(int iters) { \ 306 int64 flops_per_iter = num_computed_elements * ((C) * (FH) * (FW)); \ 309 Conv2DDimensions dims(N, H, W, C, FC, FW, FH); \ 312 BENCHMARK(BM_NAME(Conv2D_##kind, type, N, H, W, C, FC, FH, FW)) 315 #define BM_Conv2D(N, H, W, C, FC, FH, FW, type, LABEL) \ argument 316 BM_Conv2DT(Default, N, H, W, C, FC, FH, FW, type, LABEL); \ 317 BM_Conv2DT(Mkl, N, H, W, C, FC, FH, FW, type, LABEL); [all …]
|
/external/autotest/client/site_tests/kernel_FirmwareRequest/src/ |
D | fw_filesystem.sh | 24 FW="$FWPATH/test-firmware.bin" 32 rm -f "$FW" 47 echo "ABCD0123" >"$FW" 49 NAME=$(basename "$FW") 66 if diff -q "$FW" /dev/test_firmware >/dev/null ; then 83 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then 97 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then
|
/external/llvm-project/llvm/unittests/DebugInfo/GSYM/ |
D | GSYMTest.cpp | 184 FileWriter FW(OutStrm, ByteOrder); in TEST() local 188 FW.writeU32(0x100); // Function size. in TEST() 192 FW.writeU32(0); in TEST() 196 FW.fixup32(0x00000001, 4); in TEST() 199 auto FixupOffset = FW.tell(); in TEST() 200 FW.writeU32(1); // InfoType::LineTableInfo. in TEST() 203 FW.fixup32(4, FixupOffset); // Write an invalid InfoType enumeration value in TEST() 204 FW.writeU32(0); // LineTableInfo InfoType data length. in TEST() 214 FileWriter FW(OutStrm, ByteOrder); in TestFunctionInfoEncodeError() local 215 Expected<uint64_t> ExpectedOffset = FI.encode(FW); in TestFunctionInfoEncodeError() [all …]
|
/external/linux-kselftest/tools/testing/selftests/firmware/ |
D | fw_fallback.sh | 187 if diff -q "$FW" /dev/test_firmware >/dev/null ; then 204 if diff -q "$FW" /dev/test_firmware >/dev/null ; then 212 load_fw "$NAME" "$FW" 213 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then 220 load_fw_cancel "nope-$NAME" "$FW" 221 if diff -q "$FW" /dev/test_firmware >/dev/null ; then 229 load_fw_fallback_with_child "nope-signal-$NAME" "$FW"
|
D | fw_filesystem.sh | 46 if diff -q "$FW" /dev/test_firmware >/dev/null ; then 63 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then 81 if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then 169 fwfile="$FW" 192 if diff -q -Z "$FW" $DIR/read_firmware 2>/dev/null ; then 390 xz -9 -C crc32 -k $FW 415 mv "$FW" "${FW}-orig"
|
D | fw_lib.sh | 121 FW="$FWPATH/test-firmware.bin" 122 echo "ABCD0123" >"$FW" 125 NAME=$(basename "$FW") 189 if [ -f $FW ]; then 190 rm -f "$FW"
|
/external/mtools/scripts/ |
D | amuFormat.sh | 49 8MBCARD-FW) 59 32MBCARD-FW) 64 64MBCARD-FW) 69 1GBCARD-FW)
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | dllstorage.m | 3 …xceptions -S -emit-llvm -o - %s | FileCheck -allow-deprecated-dag-overlap -check-prefix CHECK-FW %s 22 // CHECK-FW-DAG: @_OBJC_METACLASS_J = dso_local dllexport global 23 // CHECK-FW-DAG: @_OBJC_CLASS_J = dso_local dllexport global 38 // CHECK-FW-DAG: @_OBJC_METACLASS_K = dso_local global 39 // CHECK-FW-DAG: @_OBJC_CLASS_K = dso_local global 55 // CHECK-FW-DAG: @_OBJC_METACLASS_L = dso_local dllexport global 56 // CHECK-FW-DAG: @_OBJC_CLASS_L = dso_local dllexport global 88 // CHECK-FW-DAG: @_OBJC_CLASS_M = external dllimport global i32 97 // CHECK-FW-DAG: @_OBJC_METACLASS_N = dso_local dllexport global 98 // CHECK-FW-DAG: @_OBJC_CLASS_N = dso_local dllexport global
|
/external/autotest/server/site_tests/enterprise_CFM_BizlinkUpdater/ |
D | control | 16 Tests the Bizlink FW updater. The test does the following: 19 3) verifies udev triggered the Bizlink FW updater to flash the latest FW to the 20 dongle by checking the FW version on the dongle
|
/external/autotest/server/site_tests/platform_InstallFW/ |
D | control | 39 # Verify FW type in arg. 45 'Correct FW Options are bios or ec.') 46 # Verify FW path arg.
|
/external/autotest/server/site_tests/enterprise_CFM_SiSFwUpdater/ |
D | control | 19 the SiS FW updater to flash the latest FW to Mimo. This is validated by running
|
/external/autotest/server/site_tests/enterprise_CFM_LogitechPtzUpdater/ |
D | control | 20 udev rule to invoke the Logitech FW updater to flash the latest FW to Ptz Pro 2.
|
/external/autotest/server/site_tests/firmware_ECRestoreFW/ |
D | control | 9 PURPOSE = "Verify the FW restoration capability even from a bad state." 18 This test flashes a wrong EC RW firmware and checks FW gets restored.
|
/external/autotest/server/site_tests/firmware_Cr50CCDUartStress/ |
D | control | 7 AUTHOR = "Cr50 FW team"
|
D | control.faft_cr50_tot | 7 AUTHOR = "Cr50 FW team"
|
/external/autotest/server/site_tests/firmware_Cr50CCDFirmwareUpdate/ |
D | control.faft_cr50_tot | 7 AUTHOR = "Cr50 FW team"
|
D | control | 7 AUTHOR = "Cr50 FW team"
|
/external/autotest/test_suites/ |
D | control.faft_lab | 32 'labels': ['FW-labblocker', 'Restrict-View-Google'],
|
D | control.bvt-faft | 35 'labels': ['FW-labblocker', 'Restrict-View-Google'],
|
/external/arm-trusted-firmware/docs/plat/ |
D | xilinx-versal.rst | 6 BootROM (BL1) and PMC FW (BL2).
|