Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (97)

  • 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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (10225)

  • dnn-layer-mathbinary-test : Fix tests for cases with extra intermediate precision

    23 avril 2020, par Martin Storsjö
    dnn-layer-mathbinary-test : Fix tests for cases with extra intermediate precision
    

    This fixes tests on 32 bit x86 mingw with clang, which uses x87
    fpu by default.

    In this setup, while the get_expected function is declared to
    return float, the compiler is (especially given the optimization
    flags set) free to keep the intermediate values (in this case,
    the return value from the inlined function) in higher precision.

    This results in the situation where 7.28 (which actually, as
    a float, ends up as 7.2800002098), multiplied by 100, is
    728.000000 when really forced into a 32 bit float, but 728.000021
    when kept with higher intermediate precision.

    For the multiplication case, a more suitable epsilon would e.g.
    be 2*FLT_EPSILON*fabs(expected_output), but just increase the
    current hardcoded threshold for now.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tests/dnn/dnn-layer-mathbinary-test.c
  • lavu/tx : improve 3-point fixed precision

    14 février 2020, par Lynne
    lavu/tx : improve 3-point fixed precision
    

    There's just no reason not to when its so easy (albeit messy) and its also
    reducing the precision of all non-power-of-two transforms that use it.

    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c
  • avfilter/vf_ssim : improve precision

    30 janvier 2020, par Paul B Mahol
    avfilter/vf_ssim : improve precision
    

    Use doubles for accumulating floats.

    • [DH] libavfilter/ssim.h
    • [DH] libavfilter/vf_ssim.c
    • [DH] libavfilter/x86/vf_ssim.asm
    • [DH] libavfilter/x86/vf_ssim_init.c