/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 124 static void BM_SPATIAL_NAME(SpatialConvolution, NT, N, H, W, C, FC, FH, \ 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 118 static void BM_NAME(BM_Conv2DBackpropFilter, type, T, FMT, N, H, W, C, FH, \ 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 117 static void BM_NAME(BM_Conv2DBackpropInput, type, T, FMT, N, H, W, C, FH, \ 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 301 static void BM_NAME(Conv2D_##kind, type, N, H, W, C, FC, FH, \ 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/llvm-project/llvm/tools/llvm-xray/ |
D | xray-converter.cpp | 80 const auto &FH = Records.getFileHeader(); in exportAsYAML() local 81 Trace.Header = {FH.Version, FH.Type, FH.ConstantTSC, FH.NonstopTSC, in exportAsYAML() 82 FH.CycleFrequency}; in exportAsYAML() 99 const auto &FH = Records.getFileHeader(); in exportAsRAWv1() local 100 Writer.write(FH.Version); in exportAsRAWv1() 101 Writer.write(FH.Type); in exportAsRAWv1() 103 if (FH.ConstantTSC) in exportAsRAWv1() 105 if (FH.NonstopTSC) in exportAsRAWv1() 108 Writer.write(FH.CycleFrequency); in exportAsRAWv1() 146 if (FH.Version >= 3) in exportAsRAWv1() [all …]
|
D | xray-extract.cpp | 57 FuncIdConversionHelper &FH) { in exportAsYAML() argument 68 ExtractSymbolize ? FH.SymbolOrNumber(*FuncId) : "", Sled.Version}); in exportAsYAML()
|
/external/llvm-project/llvm/include/llvm/XRay/ |
D | FDRRecordProducer.h | 38 FileBasedRecordProducer(const XRayFileHeader &FH, DataExtractor &DE, in FileBasedRecordProducer() argument 40 : Header(FH), E(DE), OffsetPtr(OP) {} in FileBasedRecordProducer()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
D | FDRRecordProducer.h | 38 FileBasedRecordProducer(const XRayFileHeader &FH, DataExtractor &DE, in FileBasedRecordProducer() argument 40 : Header(FH), E(DE), OffsetPtr(OP) {} in FileBasedRecordProducer()
|
/external/llvm-project/clang/tools/clang-offload-bundler/ |
D | ClangOffloadBundler.cpp | 796 std::unique_ptr<FileHandler> &FH = *FileHandlerOrErr; in BundleFiles() local 797 assert(FH); in BundleFiles() 800 if (Error Err = FH->WriteHeader(OutputFile, InputBuffers)) in BundleFiles() 807 if (Error Err = FH->WriteBundleStart(OutputFile, Triple)) in BundleFiles() 809 if (Error Err = FH->WriteBundle(OutputFile, **Input)) in BundleFiles() 811 if (Error Err = FH->WriteBundleEnd(OutputFile, Triple)) in BundleFiles() 834 std::unique_ptr<FileHandler> &FH = *FileHandlerOrErr; in UnbundleFiles() local 835 assert(FH); in UnbundleFiles() 838 if (Error Err = FH->ReadHeader(Input)) in UnbundleFiles() 853 Expected<Optional<StringRef>> CurTripleOrErr = FH->ReadBundleStart(Input); in UnbundleFiles() [all …]
|
/external/curl/tests/ |
D | ftpserver.pl | 251 my $FH = shift; 286 $rc = sysread($FH, $$scalar, $nbytes - $nread, $nread); 296 $rc = sysread($FH, $$scalar, $nbytes - $nread, $nread); 341 my $FH = \*SFREAD; 346 if(eXsysread($FH, $scalar, $nbytes, $timeout) != $nbytes) { 365 my $FH = \*DREAD; 370 if(eXsysread($FH, $scalar, $nbytes, $timeout) != $nbytes) { 380 my $FH = shift; 387 $result = sysread($$FH, $$scalar, $length);
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | DbiStream.cpp | 360 const FileInfoSubstreamHeader *FH; in initializeFileInfo() local 362 if (auto EC = FISR.readObject(FH)) in initializeFileInfo() 367 if (FH->NumModules != ModuleInfos.size()) in initializeFileInfo()
|
/external/python/cryptography/vectors/cryptography_vectors/x509/PKITS_data/smime/ |
D | SignedInvalidSelfIssuedrequireExplicitPolicyTest7.eml | 75 mXtpzaO3tPO4gyODSU2eWdjBgbmndDugp/m/t51SdcR8fhiRkaLIERnybXt4S/FH
|
D | SignedInvalidSelfIssuedrequireExplicitPolicyTest8.eml | 75 mXtpzaO3tPO4gyODSU2eWdjBgbmndDugp/m/t51SdcR8fhiRkaLIERnybXt4S/FH
|
/external/ImageMagick/PerlMagick/t/reference/write/filter/ |
D | GaussianBlur.miff | 43 …FH�DC�@>�>:�;7�96�75�64�62�40�3/�3/�63�@=�MN�W`�Wg�Qb�MV�SLxcImxNn�Tq�Xs�Yt�Zu�Zt�Zs�Yo�ViuP\^B[T?…
|
D | Scale.miff | 43 …�9,�;0�25�-;�.9�19�86�76�56�7*�8&�;$�DD�>f�=L62+hpD��{d�Fo�Oh�He�Jg�H34*57-FH=^]p��ˇ�Ԃ���|�regd\Iv…
|
/external/ImageMagick/PerlMagick/t/reference/filter/ |
D | Resize.miff | 15 …��p��j~�g��p���_O=_N=_O=\K2`YXxq�qt���Ի���iS�?E�50�?4�SG�4*�6.�8+�69�HM�EF�FH�06�DI�en�HH�B=�<7�1>…
|
D | GaussianBlur.miff | 15 …FH�A@�?:�>6�>5�>4�>4�>3�=2�<1�91�73�55�37�29�2<�5A�:F�>I�@G�@C�@?�@=�A<�A<�@:�=6�;3�:2�:3�94�73�51…
|
/external/llvm-project/llvm/utils/TableGen/ |
D | RISCVCompressInstEmitter.cpp | 594 std::string FH; in emitCompressInstEmitter() local 596 raw_string_ostream FuncH(FH); in emitCompressInstEmitter()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZScheduleZ15.td | 199 def : InstRW<[LSULatency, LSU, NormalGr], (instregex "L(Y|FH|RL|Mux)?$")>; 215 def : InstRW<[WLat1LSU, FXb, LSU, NormalGr], (instregex "L(FH|G)?AT$")>; 224 def : InstRW<[WLat1, FXb, LSU, NormalGr], (instregex "ST(Y|FH|RL|Mux)?$")>; 234 def : InstRW<[WLat2, FXa, NormalGr], (instregex "LOC(G|FH)?R(Asm.*)?$")>; 237 (instregex "LOC(G|FH|Mux)?(Asm.*)?$")>; 239 (instregex "STOC(G|FH|Mux)?(Asm.*)?$")>; 242 def : InstRW<[WLat2, FXa, NormalGr], (instregex "SEL(G|FH)?R(Asm.*)?$")>;
|
D | SystemZScheduleZ13.td | 197 def : InstRW<[LSULatency, LSU, NormalGr], (instregex "L(Y|FH|RL|Mux)?$")>; 213 def : InstRW<[WLat1LSU, FXb, LSU, NormalGr], (instregex "L(FH|G)?AT$")>; 222 def : InstRW<[WLat1, FXb, LSU, NormalGr], (instregex "ST(Y|FH|RL|Mux)?$")>; 232 def : InstRW<[WLat2, FXa, NormalGr], (instregex "LOC(G|FH)?R(Asm.*)?$")>; 235 (instregex "LOC(G|FH|Mux)?(Asm.*)?$")>; 237 (instregex "STOC(G|FH|Mux)?(Asm.*)?$")>;
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
D | SystemZScheduleZ15.td | 199 def : InstRW<[LSULatency, LSU, NormalGr], (instregex "L(Y|FH|RL|Mux)?$")>; 215 def : InstRW<[WLat1LSU, FXb, LSU, NormalGr], (instregex "L(FH|G)?AT$")>; 224 def : InstRW<[WLat1, FXb, LSU, NormalGr], (instregex "ST(Y|FH|RL|Mux)?$")>; 234 def : InstRW<[WLat2, FXa, NormalGr], (instregex "LOC(G|FH)?R(Asm.*)?$")>; 237 (instregex "LOC(G|FH|Mux)?(Asm.*)?$")>; 239 (instregex "STOC(G|FH|Mux)?(Asm.*)?$")>; 242 def : InstRW<[WLat2, FXa, NormalGr], (instregex "SEL(G|FH)?R(Asm.*)?$")>;
|
D | SystemZScheduleZ13.td | 197 def : InstRW<[LSULatency, LSU, NormalGr], (instregex "L(Y|FH|RL|Mux)?$")>; 213 def : InstRW<[WLat1LSU, FXb, LSU, NormalGr], (instregex "L(FH|G)?AT$")>; 222 def : InstRW<[WLat1, FXb, LSU, NormalGr], (instregex "ST(Y|FH|RL|Mux)?$")>; 232 def : InstRW<[WLat2, FXa, NormalGr], (instregex "LOC(G|FH)?R(Asm.*)?$")>; 235 (instregex "LOC(G|FH|Mux)?(Asm.*)?$")>; 237 (instregex "STOC(G|FH|Mux)?(Asm.*)?$")>;
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | langtagTest.txt | 119 FZAABA-FH
|