Recherche avancée

Médias (91)

Autres articles (25)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3145)

  • lavc/flacdsp : R-V V LPC32

    15 novembre 2023, par Rémi Denis-Courmont
    lavc/flacdsp : R-V V LPC32
    

    The entire set of 32 coefficients and corresponding past 32 samples can
    fit in a single vector (with LMUL=8) exactly, but... since widening
    double the needed vector sizes, we still end up too short with 128-bit
    vectors. This adds a very simple version for future 256+-bit hardware,
    and for pred_orders values up to 16, and a bit more involved loop for
    for 128-bit hardware with pred_orders between 17 and 32.

    With 128-bit hardware, the benchmarks look like this :
    flac_lpc_32_13_c : 30152.0
    flac_lpc_32_13_rvv_i32 : 10244.7
    flac_lpc_32_16_c : 37314.2
    flac_lpc_32_16_rvv_i32 : 10126.2
    flac_lpc_32_29_c : 61910.0
    flac_lpc_32_29_rvv_i32 : 14495.2
    flac_lpc_32_32_c : 68204.0
    flac_lpc_32_32_rvv_i32 : 13273.7

    • [DH] libavcodec/riscv/flacdsp_init.c
    • [DH] libavcodec/riscv/flacdsp_rvv.S
  • checkasm : Implement helpers for defining and checking padded rects

    21 mars, par Martin Storsjö
    checkasm : Implement helpers for defining and checking padded rects
    

    This backports similar functionality from dav1d, from commits
    35d1d011fda4a92bcaf42d30ed137583b27d7f6d and
    d130da9c315d5a1d3968d278bbee2238ad9051e7.

    This allows detecting writes out of bounds, on all 4 sides of
    the intended destination rectangle.

    The bounds checking also can optionally allow small overwrites
    (up to a specified alignment), while still checking for larger
    overwrites past the intended allowed region.

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

    • [DH] tests/checkasm/checkasm.c
    • [DH] tests/checkasm/checkasm.h
  • lavc/sbrdsp : R-V V hf_apply_noise functions

    10 novembre 2023, par Rémi Denis-Courmont
    lavc/sbrdsp : R-V V hf_apply_noise functions
    

    This is restricted to 128-bit vectors as larger vector sizes could read
    past the end of the noise array. Support for future hardware with larger
    vector sizes is left for some other time.

    hf_apply_noise_0_c : 2319.7
    hf_apply_noise_0_rvv_f32 : 1229.0
    hf_apply_noise_1_c : 2539.0
    hf_apply_noise_1_rvv_f32 : 1244.7
    hf_apply_noise_2_c : 2319.7
    hf_apply_noise_2_rvv_f32 : 1232.7
    hf_apply_noise_3_c : 2541.2
    hf_apply_noise_3_rvv_f32 : 1244.2

    • [DH] libavcodec/riscv/sbrdsp_init.c
    • [DH] libavcodec/riscv/sbrdsp_rvv.S