Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8934)

  • libavutil : Detect MMI and MSA flags for MIPS

    18 juillet 2020, par Jiaxun Yang
    libavutil : Detect MMI and MSA flags for MIPS
    

    Add MMI & MSA runtime detection for MIPS.

    Basically there are two code pathes. For systems that
    natively support CPUCFG instruction or kernel emulated
    that instruction, we'll sense this feature from HWCAP and
    report the flags according to values grab from CPUCFG. For
    systems that have no CPUCFG (or not export it in HWCAP),
    we'll parse /proc/cpuinfo instead.

    Signed-off-by : Jiaxun Yang <jiaxun.yang@flygoat.com>
    Reviewed-by : Shiyou Yin <yinshiyou-hf@loongson.cn>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/cpu.c
    • [DH] libavutil/cpu.h
    • [DH] libavutil/cpu_internal.h
    • [DH] libavutil/mips/Makefile
    • [DH] libavutil/mips/cpu.c
    • [DH] libavutil/mips/cpu.h
    • [DH] libavutil/tests/cpu.c
    • [DH] tests/checkasm/checkasm.c
  • lavu/riscv : helper macro for VTYPE encoding

    5 octobre 2022, par Rémi Denis-Courmont
    lavu/riscv : helper macro for VTYPE encoding
    

    On most cases, the vector type (VTYPE) for the RISC-V Vector extension
    is supplied as an immediate value, with either of the VSETVLI or
    VSETIVLI instructions. There is however a third instruction VSETVL
    which takes the vector type from a general purpose register. That is so
    the type can be selected at run-time.

    This introduces a macro to load a (valid) vector type into a register.
    The syntax follows that of VSETVLI and VSETIVLI, with element size,
    group multiplier, then tail and mask policies.

    • [DH] libavutil/riscv/asm.S
  • checkasm : aarch64 : Don’t clobber x29 in checkasm_stack_clobber

    18 octobre 2016, par Martin Storsjö
    checkasm : aarch64 : Don’t clobber x29 in checkasm_stack_clobber
    

    x29 (FP) is a callee saved register and should be restored on
    return. Instead of backing up x29 and restoring it here, back up
    sp in a register that we are allowed to overwrite.

    This fixes crashes in checkasm on aarch64 since f1b3e1313851.
    For some reason, gcc builds didn’t crash, but clang builds do.

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

    • [DBH] tests/checkasm/aarch64/checkasm.S