Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder ffmpeg-solaris10-sparc Build #12165

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisionf531c91170773032c2c8ab7d390e7a6a1382c77b
Got Revisionf531c91170773032c2c8ab7d390e7a6a1382c77b
Changes3 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 42 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 8 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.sh' failed ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12165 Build
codebase Build
got_revision f531c91170773032c2c8ab7d390e7a6a1382c77b Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision f531c91170773032c2c8ab7d390e7a6a1382c77b Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Lynne

Timing:

StartTue Jun 10 15:35:00 2025
EndTue Jun 10 15:35:53 2025
Elapsed53 secs

All Changes:

:

  1. Change #231833

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 10 Jun 2025 15:26:09
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision b5262bccdba0a86b29c6cc58f099c869df752b61

    Comments

    hwcontext_vulkan: do not use optical flow queueus by default
    We don't use them, and on NVIDIA, each queue takes around 30ms
    to allocate, and the driver has a global limit of ONLY 112 queues.

    Changed files

    • libavutil/hwcontext_vulkan.c
  2. Change #231834

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 10 Jun 2025 15:26:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 26d17709e7dca49d5959ca31f9626a603f0bbaee

    Comments

    hwcontext_vulkan: minimize queue allocation on NVIDIA
    On NVIDIA, there's a global maximum limit of approximately 112 queues,
    which means it takes ONLY 7 total programs using the maximum amount of
    queues to cause the driver to error out/*segfault* during initialization.
    
    Also, each queue takes about 30ms to allocate, which quickly adds up.
    
    This reduces the queues allocate to the minimum that we would be happy
    with. Its not worth limiting decode/encode queues as they're generally
    not a lot, and do help.

    Changed files

    • libavutil/hwcontext_vulkan.c
  3. Change #231835

    Category ffmpeg
    Changed by Lynne <devohnoyoudont@lynne.ee>
    Changed at Tue 10 Jun 2025 15:26:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision f531c91170773032c2c8ab7d390e7a6a1382c77b

    Comments

    hwcontext_vulkan: add a setting to limit queues
    If its a problem, you'll likely want to set it to 1 than more fine-grained
    control, which you can already do via the API.

    Changed files

    • libavutil/hwcontext_vulkan.c