Recherche avancée

Médias (91)

Autres articles (102)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13681)

  • avcodec/nvenc : print minimum driver version on error

    1er juin 2017, par Timo Rothenpieler
    avcodec/nvenc : print minimum driver version on error
    
    • [DH] libavcodec/nvenc.c
  • x86inc : Add debug symbols indicating sizes of compiled functions

    12 octobre 2015, par Geza Lore
    x86inc : Add debug symbols indicating sizes of compiled functions
    

    Some debuggers/profilers use this metadata to determine which function a
    given instruction is in ; without it they get can confused by local labels
    (if you haven’t stripped those). On the other hand, some tools are still
    confused even with this metadata. e.g. this fixes `gdb`, but not `perf`.

    Currently only implemented for ELF.

    • [DH] libavcodec/x86/proresdsp.asm
    • [DH] libavcodec/x86/simple_idct10.asm
    • [DH] libavutil/x86/x86inc.asm
    • [DH] tests/checkasm/x86/checkasm.asm
  • lavu/tx : implement aarch64 NEON SIMD FFT

    3 février 2022, par Lynne
    lavu/tx : implement aarch64 NEON SIMD FFT
    

    The fastest fast Fourier transform in not just the west, but the world,
    now for the most popular toy ISA.

    On a high level, it follows the design of the AVX2 version closely,
    with the exception that the input is slightly less permuted as we don't have
    to do lane switching with the input on double 4pt and 8pt.

    On a low level, the lack of subadd/addsub instructions REALLY penalizes
    any attempt at writing an FFT. That single register matters a lot,
    and reloading it simply takes unacceptably long.
    In x86 land, vendors would've noticed developers need this.
    In ARM land, you get a badly designed complex multiplication instruction
    we cannot use, that's not present on 95% of devices. Because only
    compilers matter, right ?

    Future optimization options are very few, perhaps better register
    management to use more ld1/st1s.

    All timings below are in cycles :
    A53 :
    Length | C | New (lavu) | Old (lavc) | FFTW


    |-------------|-------------|-------------|-----
    4 | 842 | 420 | 1210 | 1460
    8 | 1538 | 1020 | 1850 | 2520
    16 | 3717 | 1900 | 3700 | 3990
    32 | 9156 | 4070 | 8289 | 8860
    64 | 21160 | 9931 | 18600 | 19625
    128 | 49180 | 23278 | 41922 | 41922
    256 | 112073 | 53876 | 93202 | 101092
    512 | 252864 | 122884 | 205897 | 207868
    1024 | 560512 | 278322 | 458071 | 453053
    2048 | 1295402 | 775835 | 1038205 | 1020265
    4096 | 3281263 | 2021221 | 2409718 | 2577554
    8192 | 8577845 | 4780526 | 5673041 | 6802722

    Apple M1
    New - Total for len 512 reps 2097152 = 1.459141 s
    Old - Total for len 512 reps 2097152 = 2.251344 s
    FFTW - Total for len 512 reps 2097152 = 1.868429 s

    New - Total for len 1024 reps 4194304 = 6.490080 s
    Old - Total for len 1024 reps 4194304 = 9.604949 s
    FFTW - Total for len 1024 reps 4194304 = 7.889281 s

    New - Total for len 16384 reps 262144 = 10.374001 s
    Old - Total for len 16384 reps 262144 = 15.266713 s
    FFTW - Total for len 16384 reps 262144 = 12.341745 s

    New - Total for len 65536 reps 8192 = 1.769812 s
    Old - Total for len 65536 reps 8192 = 4.209413 s
    FFTW - Total for len 65536 reps 8192 = 3.012365 s

    New - Total for len 131072 reps 4096 = 1.942836 s
    Old - Segfaults
    FFTW - Total for len 131072 reps 4096 = 3.713713 s

    Thanks to wbs for some simplifications, assembler fixes and a review
    and to jannau for giving it a look.

    • [DH] libavutil/aarch64/Makefile
    • [DH] libavutil/aarch64/tx_float_init.c
    • [DH] libavutil/aarch64/tx_float_neon.S
    • [DH] libavutil/tx.c
    • [DH] libavutil/tx_priv.h