You are not logged in.

#1 2020-03-23 11:40:05

Candroidgenie
Member
Registered: 2020-03-23
Posts: 11

How to enable AMDGPU-PRO only for one application

I am trying to run DaVinci Resolve.
According to the wiki, the only supported AMD driver is the AMDGPU-PRO.
However, I am running AMDGPU. When I tried AMDGPU-PRO it caused a lot of problems so running it system-wide is not really an option.
My GPU is the MSI 5700xt Evoke and my CPU is the intel 5820k (so no integrated graphics).

Is there a way where I can run the AMDGPU-PRO driver only for resolve?

According to the arch wiki "AMDGPU PRO, which works on top of the open-source AMDGPU kernel driver", implies to me it may be possible to load it only when necessary or in a different user.
Everything I can find online is about Nvidia DGPUs or Intel IGPUs neigher of which I have.
If needs be I have a Nvidia GT710 lying around which I could install and run along side my 7500xt but i'd ideally not do that.

Things I've tried:
- running the resolve binary through sudo    - the same as running it normally
- running the resolve binary as root        - the same as running it normally
- installing opencl-amd                        - the same as running it normally, see code below for details
- clean building the resolve package (yay) after installing opencl-amd    - the same as running it normally

From what I can see it would appear that installing opencl-amd (the proprietary OpenCL driver) allows resolve to find the gpu but it still does not get past the initial loading screen.

Any help would be greatly appreciated.

when I run resolve from the console I get the following:

ActCCMessage Already in Table: Code= c005, Mode= 13, Level=  1, CmdKey= -1, Option= 0
ActCCMessage Already in Table: Code= c006, Mode= 13, Level=  1, CmdKey= -1, Option= 0
ActCCMessage Already in Table: Code= c007, Mode= 13, Level=  1, CmdKey= -1, Option= 0
ActCCMessage Already in Table: Code= 2282, Mode=  0, Level=  0, CmdKey= 8, Option= 0
PnlMsgActionStringAdapter Already in Table: Code= 615e, Mode=  0, Level=  0, CmdKey= -1, Option= 0
log4cxx: No appender could be found for logger (BtCommon).
log4cxx: Please initialize the log4cxx system properly.
16.2 (#055) Linux/Clang
Main thread starts: 65880B80
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,548 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | --------------------------------------------------------------------------------

The log file it points to (log-conf.xml) reads:

<?xml version="1.0" encoding="utf-8" ?>
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">

  <!-- == Log Appenders == -->
  
  <!-- Output the log message to system console.
 	-->
  <appender name="StdErrAppender" class="org.apache.log4j.ConsoleAppender">
    <param name="Target" value="System.err"/>
    <!-- other possible layout patterns
      
      the following appender creates a logfile in log4j XML format, suitable to viewing with
      XML log viewer such as Chainsaw (http://logging.apache.org/log4j/docs/chainsaw.html)
      <layout class="org.apache.log4j.xml.XMLLayout" />
      
      HTML table layout
      <layout class="org.apache.log4j.xml.HTMLLayout" />
      
      Time Thread Catagory layout
      <layout class="org.apache.log4j.TTCCLayout" />
    -->
    <layout class="org.apache.log4j.PatternLayout">
        <param name="ConversionPattern" value="[%t] | %-20.32c | %-5p | %d{ISO8601} | %m%n"/>
    </layout>
  </appender>

  <!-- On application startup, a log file named "rollinglog.log" will be create if not exist.
 	     When the log file reach beyond 5KB, it will be renamed "rollinglog.log.1", when the log
 	     index reach "rollinglog.log.5", the next rename will be back to "rollinglog.log.1" and
 	     overite the old log. 
 	-->
  <appender name="RollLogAppender" class="org.apache.log4j.RollingFileAppender">
    <param name="file" value="./logs/rollinglog.txt"/>
    <param name="append" value="true"/>
    <param name="MaxFileSize" value="2MB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
        <param name="ConversionPattern" value="[%t] | %-20.32c | %-5p | %d{ISO8601} | %m%n"/>
    </layout>
  </appender>

  <!-- == Log filter setting == -->
  
  <!-- Setup the root category, add the appenders and set the default level 
 	     5 level of logging,  ALL < DEBUG < INFO < WARN < ERROR < FATAL 
 	     The root level is set with INFO, which mean any message greater or same
 	     as INFO will be log down, in this case, DEBUG is not logged. 
 	     To log all regardless of logging level, set <priority value="ALL">
 	-->
  <root>
    <priority value="INFO" />
    <appender-ref ref="StdErrAppender"/>
    <appender-ref ref="RollLogAppender"/>
  </root>

  <!-- Example:
       Specify the target appender for SyManager
       Specify the level for SyManager
  -->
  <!-- 
  <category name="SyManager" >
    <priority value ="DEBUG" />
    
    <appender-ref ref="SyManagerAppender"/>
  </category>
  -->

</log4j:configuration>

rollinglog.txt reads:

[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,739 | --------------------------------------------------------------------------------
[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,740 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,740 | --------------------------------------------------------------------------------
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,740 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,741 | Updating display GPU information...
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,741 | Detecting Main Display properties
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,753 | Process to detect main display has finished
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,765 | Fallback process to detect main display has finished
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | Setting LsManager.3.NumGPUs = 1
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:04,766 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:04,810 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,810 | 0 RED rocket cards available
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,810 | Decklink model name: '', version: ''
[0x7f9a723f7b80] | DVIP                 | INFO  | 2020-03-23 20:31:04,810 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f9a723f7b80] | SyManager            | WARN  | 2020-03-23 20:31:04,831 | Failed to load user preferences.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,859 | Finished loading Application style sheet
[0x7f9a723f7b80] | SyManager.MediaStorage | INFO  | 2020-03-23 20:31:04,944 | Creating default fsbookmarklist file: /home/joseph/.local/share/DaVinciResolve/configs/.fsbookmarklist
[0x7f9a4bc43700] | LeManager            | INFO  | 2020-03-23 20:31:04,944 | 521, 38
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Using default pooled memory manager
[0x7f9a4b442700] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | BtResourceManager Process Thread Started
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Daemon DPDecoder is started 21228
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Daemon DPDecoder is started 21229
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,599 | Daemon DPDecoder is started 21230
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,599 | Daemon DPDecoder is started 21231
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21232
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21233
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21234
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21235
[0x7f9a723f7b80] | SyManager            | INFO  | 2020-03-23 20:31:05,607 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f9a723f7b80] | SyManager            | INFO  | 2020-03-23 20:31:05,607 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f9a45c37700] | GsManager            | INFO  | 2020-03-23 20:31:05,607 | Gs Processor Thread ----- (140300572129024)

[0x7f9a723f7b80] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Using 8 generic IO threads
[0x7f9a43432700] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Dt Data Handler Thread Started
[0x7f9a723f7b80] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f9a4743a700] | SyManager            | ERROR | 2020-03-23 20:31:05,607 | Failed to connect to panel socket
[0x7f9a41c31700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a4743a700] | SyManager            | ERROR | 2020-03-23 20:31:05,608 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f9a3ec2b700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3c426700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a40c2f700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3fc2d700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3f42c700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a41430700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3dc29700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3d428700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3cc27700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a4042e700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3bc25700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3b424700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3ac23700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3a422700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a39c21700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a39420700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3e42a700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a723f7b80] | DbCommon2            | INFO  | 2020-03-23 20:31:05,609 | Creating default dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,609 | Let There Be OpenCL Light!
[0x7f9a723f7b80] | DbCommon2            | INFO  | 2020-03-23 20:31:05,609 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | Start detecting OpenCL boards
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | Skipping unqualified OpenCL platform: Clover
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | 0 OpenCL boards detected
[0x7f9a34c17700] | GPUManager           | ERROR | 2020-03-23 20:31:05,615 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f9a34c17700] | IP                   | ERROR | 2020-03-23 20:31:05,615 | Failed to initialize OpenCL boards
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,628 | Using DNxHR library v2.5.2.68r
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(0), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(2), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(4), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(6), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(8), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(9), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(10), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(11), thds(1)
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | --------------------------------------------------------------------------------
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | --------------------------------------------------------------------------------
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,617 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,617 | Updating display GPU information...
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,860 | Detecting Main Display properties
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,870 | Process to detect main display has finished
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Fallback process to detect main display has finished
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Setting LsManager.3.NumGPUs = 1
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:03,887 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:03,929 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,929 | 0 RED rocket cards available
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,929 | Decklink model name: '', version: ''
[0x7f6403a34b80] | DVIP                 | INFO  | 2020-03-23 20:33:03,929 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,966 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,966 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,967 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,985 | Finished loading Application style sheet
[0x7f63dd0ea700] | LeManager            | INFO  | 2020-03-23 20:33:04,111 | 521, 38
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,764 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,764 | Using default pooled memory manager
[0x7f63dc8e9700] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | BtResourceManager Process Thread Started
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21644
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21645
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21646
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21647
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21648
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21649
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,767 | Daemon DPDecoder is started 21650
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,767 | Daemon DPDecoder is started 21651
[0x7f6403a34b80] | SyManager            | INFO  | 2020-03-23 20:33:04,773 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f6403a34b80] | SyManager            | INFO  | 2020-03-23 20:33:04,773 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f63d88e1700] | SyManager            | ERROR | 2020-03-23 20:33:04,774 | Failed to connect to panel socket
[0x7f63d70de700] | GsManager            | INFO  | 2020-03-23 20:33:04,774 | Gs Processor Thread ----- (140066786502400)

[0x7f63d88e1700] | SyManager            | ERROR | 2020-03-23 20:33:04,774 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f6403a34b80] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Using 8 generic IO threads
[0x7f63d28d9700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Data Handler Thread Started
[0x7f6403a34b80] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f63d20d8700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d18d7700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d10d6700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63ce0d0700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d00d4700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cb8cb700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63cf0d2700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d08d5700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63ce8d1700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cd8cf700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cc8cd700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cc0cc700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63cf8d3700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cb0ca700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63ca0c8700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63ca8c9700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63c98c7700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f6403a34b80] | DbCommon2            | INFO  | 2020-03-23 20:33:04,775 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,775 | Let There Be OpenCL Light!
[0x7f63cd0ce700] | DtManager            | INFO  | 2020-03-23 20:33:04,776 | Dt Worker Thread Started
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | Start detecting OpenCL boards
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | Skipping unqualified OpenCL platform: Clover
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | 0 OpenCL boards detected
[0x7f63c50be700] | GPUManager           | ERROR | 2020-03-23 20:33:04,781 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f63c50be700] | IP                   | ERROR | 2020-03-23 20:33:04,781 | Failed to initialize OpenCL boards
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,785 | Using DNxHR library v2.5.2.68r
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(0), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(2), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(4), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(6), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(8), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(9), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(10), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(11), thds(1)
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,297 | --------------------------------------------------------------------------------
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,298 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,298 | --------------------------------------------------------------------------------
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,298 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,299 | Updating display GPU information...
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,518 | Detecting Main Display properties
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,529 | Process to detect main display has finished
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,545 | Fallback process to detect main display has finished
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | Setting LsManager.3.NumGPUs = 1
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:27,546 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:27,587 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,587 | 0 RED rocket cards available
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,587 | Decklink model name: '', version: ''
[0x7f3822efeb80] | DVIP                 | INFO  | 2020-03-23 20:41:27,587 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,619 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,619 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,620 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,637 | Finished loading Application style sheet
[0x7f37fc5b4700] | LeManager            | INFO  | 2020-03-23 20:41:27,765 | 521, 38
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Using default pooled memory manager
[0x7f37fbdb3700] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | BtResourceManager Process Thread Started
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Daemon DPDecoder is started 22104
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Daemon DPDecoder is started 22105
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22106
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22107
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22108
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,408 | Daemon DPDecoder is started 22109
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,408 | Daemon DPDecoder is started 22110
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,409 | Daemon DPDecoder is started 22111
[0x7f3822efeb80] | SyManager            | INFO  | 2020-03-23 20:41:28,415 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f3822efeb80] | SyManager            | INFO  | 2020-03-23 20:41:28,415 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f37f65a8700] | GsManager            | INFO  | 2020-03-23 20:41:28,416 | Gs Processor Thread ----- (139878333056768)

[0x7f37f7dab700] | SyManager            | ERROR | 2020-03-23 20:41:28,416 | Failed to connect to panel socket
[0x7f3822efeb80] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Using 8 generic IO threads
[0x7f37f7dab700] | SyManager            | ERROR | 2020-03-23 20:41:28,416 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f3822efeb80] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f37f25a3700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Data Handler Thread Started
[0x7f37f05a2700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37efda1700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37eed9f700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ef5a0700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ead97700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ee59e700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37edd9d700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ec59a700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ecd9b700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ebd99700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e9d95700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37eb598700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ea596700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ed59c700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e9594700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e8d93700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e8592700] | DtManager            | INFO  | 2020-03-23 20:41:28,417 | Dt Worker Thread Started
[0x7f37e7d91700] | DtManager            | INFO  | 2020-03-23 20:41:28,417 | Dt Worker Thread Started
[0x7f3822efeb80] | DbCommon2            | INFO  | 2020-03-23 20:41:28,417 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,417 | Let There Be OpenCL Light!
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | Start detecting OpenCL boards
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | Skipping unqualified OpenCL platform: Clover
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | 0 OpenCL boards detected
[0x7f37e3588700] | GPUManager           | ERROR | 2020-03-23 20:41:28,422 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f37e3588700] | IP                   | ERROR | 2020-03-23 20:41:28,422 | Failed to initialize OpenCL boards
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,426 | Using DNxHR library v2.5.2.68r
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(0), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(2), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(4), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(6), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(8), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(9), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(10), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(11), thds(1)
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,548 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,549 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,550 | Updating display GPU information...
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,773 | Detecting Main Display properties
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,785 | Process to detect main display has finished
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,803 | Fallback process to detect main display has finished
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | Setting LsManager.3.NumGPUs = 1
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:22,804 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:22,847 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,847 | 0 RED rocket cards available
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,847 | Decklink model name: '', version: ''
[0x7f3965880b80] | DVIP                 | INFO  | 2020-03-23 20:42:22,847 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,896 | Finished loading Application style sheet
[0x7f393ef36700] | LeManager            | INFO  | 2020-03-23 20:42:23,025 | 521, 38
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | Using default pooled memory manager
[0x7f393e735700] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | BtResourceManager Process Thread Started
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,651 | Daemon DPDecoder is started 22329
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,651 | Daemon DPDecoder is started 22330
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22331
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22332
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22333
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22334
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,653 | Daemon DPDecoder is started 22335
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,653 | Daemon DPDecoder is started 22336
[0x7f3965880b80] | SyManager            | INFO  | 2020-03-23 20:42:23,660 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f3965880b80] | SyManager            | INFO  | 2020-03-23 20:42:23,660 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f393a72d700] | SyManager            | ERROR | 2020-03-23 20:42:23,660 | Failed to connect to panel socket
[0x7f3965880b80] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Using 8 generic IO threads
[0x7f3938f2a700] | GsManager            | INFO  | 2020-03-23 20:42:23,660 | Gs Processor Thread ----- (139883745289984)

[0x7f3934725700] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Dt Data Handler Thread Started
[0x7f393a72d700] | SyManager            | ERROR | 2020-03-23 20:42:23,660 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f3965880b80] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f3933f24700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3932721700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3933723700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3932f22700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f393171f700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3930f1e700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3931f20700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f393071d700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392ff1c700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392f71b700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392e719700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392df18700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392ef1a700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392d717700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392bf14700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392c715700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392b713700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392cf16700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3965880b80] | DbCommon2            | INFO  | 2020-03-23 20:42:23,662 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,662 | Let There Be OpenCL Light!
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | Start detecting OpenCL boards
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | Skipping unqualified OpenCL platform: Clover
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | 0 OpenCL boards detected
[0x7f3926f0a700] | GPUManager           | ERROR | 2020-03-23 20:42:23,667 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f3926f0a700] | IP                   | ERROR | 2020-03-23 20:42:23,667 | Failed to initialize OpenCL boards
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,670 | Using DNxHR library v2.5.2.68r
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,673 | Kdu ctx(0), bundle(0), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(2), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(4), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(6), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(8), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(9), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(10), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(11), thds(1)
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | --------------------------------------------------------------------------------
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | --------------------------------------------------------------------------------
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,037 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,038 | Updating display GPU information...
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,276 | Detecting Main Display properties
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,288 | Process to detect main display has finished
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Fallback process to detect main display has finished
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Setting LsManager.3.NumGPUs = 1
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:13,301 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:13,345 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,345 | 0 RED rocket cards available
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,345 | Decklink model name: '', version: ''
[0x7fda7828db80] | DVIP                 | INFO  | 2020-03-23 20:43:13,345 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7fda7828db80] | SyManager            | WARN  | 2020-03-23 20:43:13,367 | Failed to load user preferences.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,377 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,378 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,378 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,396 | Finished loading Application style sheet
[0x7fda7828db80] | SyManager.MediaStorage | INFO  | 2020-03-23 20:43:13,511 | Creating default fsbookmarklist file: /root/.local/share/DaVinciResolve/configs/.fsbookmarklist
[0x7fda51943700] | LeManager            | INFO  | 2020-03-23 20:43:13,520 | 521, 38
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Memory config: reserved=6000M pinned=4000M log=0
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Using default pooled memory manager
[0x7fda51142700] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | BtResourceManager Process Thread Started
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Daemon DPDecoder is started 22653
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22654
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22655
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22656
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22657
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,149 | Daemon DPDecoder is started 22658
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,149 | Daemon DPDecoder is started 22659
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,150 | Daemon DPDecoder is started 22660
[0x7fda7828db80] | SyManager            | INFO  | 2020-03-23 20:43:14,156 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7fda7828db80] | SyManager            | INFO  | 2020-03-23 20:43:14,156 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7fda4d13a700] | SyManager            | ERROR | 2020-03-23 20:43:14,156 | Failed to connect to panel socket
[0x7fda4b937700] | GsManager            | INFO  | 2020-03-23 20:43:14,156 | Gs Processor Thread ----- (140575547553536)

[0x7fda4d13a700] | SyManager            | ERROR | 2020-03-23 20:43:14,156 | DRIVER: open /var/tmp/davinci_socket failed
[0x7fda7828db80] | DtManager            | INFO  | 2020-03-23 20:43:14,156 | Using 8 generic IO threads
[0x7fda49132700] | DtManager            | INFO  | 2020-03-23 20:43:14,156 | Dt Data Handler Thread Started
[0x7fda7828db80] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7fda46931700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda46130700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4512e700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4592f700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda40925700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4492d700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4392b700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4312a700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda42128700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda42929700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda41927700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda41126700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda7828db80] | DbCommon2            | INFO  | 2020-03-23 20:43:14,158 | Creating default dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7fda40124700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3f923700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3f122700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3e921700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3e120700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,158 | Let There Be OpenCL Light!
[0x7fda4412c700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda7828db80] | DbCommon2            | INFO  | 2020-03-23 20:43:14,158 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | Start detecting OpenCL boards
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | Skipping unqualified OpenCL platform: Clover
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | 0 OpenCL boards detected
[0x7fda39917700] | GPUManager           | ERROR | 2020-03-23 20:43:14,162 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7fda39917700] | IP                   | ERROR | 2020-03-23 20:43:14,162 | Failed to initialize OpenCL boards
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,166 | Using DNxHR library v2.5.2.68r
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(0), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(2), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(4), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(6), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(8), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(9), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(10), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,170 | Kdu ctx(0), bundle(11), thds(1)
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,352 | --------------------------------------------------------------------------------
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,353 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,353 | --------------------------------------------------------------------------------
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,353 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,354 | Updating display GPU information...
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,574 | Detecting Main Display properties
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,588 | Process to detect main display has finished
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,602 | Fallback process to detect main display has finished
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | Setting LsManager.3.NumGPUs = 1
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:56,603 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:56,645 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,645 | 0 RED rocket cards available
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,645 | Decklink model name: '', version: ''
[0x7f0f9647bb80] | DVIP                 | INFO  | 2020-03-23 20:57:56,645 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,692 | Finished loading Application style sheet
[0x7f0f6fb31700] | LeManager            | INFO  | 2020-03-23 20:57:56,830 | 521, 38
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,456 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Using default pooled memory manager
[0x7f0f6f330700] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | BtResourceManager Process Thread Started
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Daemon DPDecoder is started 24656
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Daemon DPDecoder is started 24657
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24658
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24659
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24660
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24661
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24662
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24663
[0x7f0f9647bb80] | SyManager            | INFO  | 2020-03-23 20:57:57,466 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f0f9647bb80] | SyManager            | INFO  | 2020-03-23 20:57:57,466 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f0f6b328700] | SyManager            | ERROR | 2020-03-23 20:57:57,466 | Failed to connect to panel socket
[0x7f0f69b25700] | GsManager            | INFO  | 2020-03-23 20:57:57,466 | Gs Processor Thread ----- (139704174532352)

[0x7f0f6b328700] | SyManager            | ERROR | 2020-03-23 20:57:57,466 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f0f9647bb80] | DtManager            | INFO  | 2020-03-23 20:57:57,466 | Using 8 generic IO threads
[0x7f0f66f20700] | DtManager            | INFO  | 2020-03-23 20:57:57,466 | Dt Data Handler Thread Started
[0x7f0f9647bb80] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f0f64b1f700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6431e700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f63b1d700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f61b19700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f62b1b700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5cb0f700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f61318700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f60b17700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f60316700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5fb15700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6331c700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5f314700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5e312700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5eb13700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5db11700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5d310700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6231a700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5c30e700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f9647bb80] | DbCommon2            | INFO  | 2020-03-23 20:57:57,468 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,468 | Let There Be OpenCL Light!
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | Start detecting OpenCL boards
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | Skipping unqualified OpenCL platform: Clover
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | 0 OpenCL boards detected
[0x7f0f57b05700] | GPUManager           | ERROR | 2020-03-23 20:57:57,473 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f0f57b05700] | IP                   | ERROR | 2020-03-23 20:57:57,473 | Failed to initialize OpenCL boards
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,476 | Using DNxHR library v2.5.2.68r
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(0), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(2), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(4), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(6), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(8), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(9), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(10), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(11), thds(1)
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | --------------------------------------------------------------------------------
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | --------------------------------------------------------------------------------
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:34,823 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:34,823 | Updating display GPU information...
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,042 | Detecting Main Display properties
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,052 | Process to detect main display has finished
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,064 | Fallback process to detect main display has finished
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | Setting LsManager.3.NumGPUs = 1
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,065 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,105 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,105 | 0 RED rocket cards available
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,105 | Decklink model name: '', version: ''
[0x7f1ab4487b80] | DVIP                 | INFO  | 2020-03-23 21:02:35,105 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,139 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,140 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,140 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,159 | Finished loading Application style sheet
[0x7f1a8db3d700] | LeManager            | INFO  | 2020-03-23 21:02:35,290 | 521, 38
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | Using default pooled memory manager
[0x7f1a8d33c700] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | BtResourceManager Process Thread Started
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,920 | Daemon DPDecoder is started 25082
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,920 | Daemon DPDecoder is started 25083
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25084
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25085
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25086
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25087
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,922 | Daemon DPDecoder is started 25088
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,922 | Daemon DPDecoder is started 25089
[0x7f1ab4487b80] | SyManager            | INFO  | 2020-03-23 21:02:35,929 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f1ab4487b80] | SyManager            | INFO  | 2020-03-23 21:02:35,929 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f1a89334700] | SyManager            | ERROR | 2020-03-23 21:02:35,929 | Failed to connect to panel socket
[0x7f1a87b31700] | GsManager            | INFO  | 2020-03-23 21:02:35,929 | Gs Processor Thread ----- (139751922538240)

[0x7f1a89334700] | SyManager            | ERROR | 2020-03-23 21:02:35,929 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f1ab4487b80] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Using 8 generic IO threads
[0x7f1a8432c700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Data Handler Thread Started
[0x7f1ab4487b80] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f1a83b2b700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a8332a700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a82b29700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a82328700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a81326700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a81b27700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7fb23700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a80b25700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a80324700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7eb21700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7f322700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7e320700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7d31e700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7db1f700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7c31c700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7cb1d700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7b31a700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7bb1b700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1ab4487b80] | DbCommon2            | INFO  | 2020-03-23 21:02:35,930 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,930 | Let There Be OpenCL Light!
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | Start detecting OpenCL boards
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | Skipping unqualified OpenCL platform: Clover
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | 0 OpenCL boards detected
[0x7f1a76b11700] | GPUManager           | ERROR | 2020-03-23 21:02:35,935 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f1a76b11700] | IP                   | ERROR | 2020-03-23 21:02:35,935 | Failed to initialize OpenCL boards
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,938 | Using DNxHR library v2.5.2.68r
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(0), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(2), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(4), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(6), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(8), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(9), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(10), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(11), thds(1)

The output to ls /etc/OpenCL/vendors is:

mesa.icd

The output to clinfo is:

Number of platforms                               1
  Platform Name                                   Clover
  Platform Vendor                                 Mesa
  Platform Version                                OpenCL 1.1 Mesa 19.3.4
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd
  Platform Extensions function suffix             MESA

  Platform Name                                   Clover
Number of devices                                 1
  Device Name                                     AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)
  Device Vendor                                   AMD
  Device Vendor ID                                0x1002
  Device Version                                  OpenCL 1.1 Mesa 19.3.4
  Driver Version                                  19.3.4
  Device OpenCL C Version                         OpenCL C 1.1 
  Device Type                                     GPU
  Device Profile                                  FULL_PROFILE
  Device Available                                Yes
  Compiler Available                              Yes
  Max compute units                               40
  Max clock frequency                             2010MHz
  Max work item dimensions                        3
  Max work item sizes                             256x256x256
  Max work group size                             256
=== CL_PROGRAM_BUILD_LOG ===
fatal error: cannot open file '/usr/lib/clc/gfx1010-amdgcn-mesa-mesa3d.bc': No such file or directory
  Preferred work group size multiple              <getWGsizes:1200: create kernel : error -46>
  Preferred / native vector sizes                 
    char                                                16 / 16      
    short                                                8 / 8       
    int                                                  4 / 4       
    long                                                 2 / 2       
    half                                                 8 / 8        (cl_khr_fp16)
    float                                                4 / 4       
    double                                               2 / 2        (cl_khr_fp64)
  Half-precision Floating-point support           (cl_khr_fp16)
    Denormals                                     No
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 No
    Round to infinity                             No
    IEEE754-2008 fused multiply-add               No
    Support is emulated in software               No
  Single-precision Floating-point support         (core)
    Denormals                                     No
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 No
    Round to infinity                             No
    IEEE754-2008 fused multiply-add               No
    Support is emulated in software               No
    Correctly-rounded divide and sqrt operations  No
  Double-precision Floating-point support         (cl_khr_fp64)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
  Address bits                                    64, Little-Endian
  Global memory size                              8589934592 (8GiB)
  Error Correction support                        No
  Max memory allocation                           6871947673 (6.4GiB)
  Unified memory for Host and Device              No
  Minimum alignment for any data type             128 bytes
  Alignment of base address                       32768 bits (4096 bytes)
  Global Memory cache type                        None
  Image support                                   No
  Local memory type                               Local
  Local memory size                               32768 (32KiB)
  Max number of constant args                     16
  Max constant buffer size                        2147483647 (2GiB)
  Max size of kernel argument                     1024
  Queue properties                                
    Out-of-order execution                        No
    Profiling                                     Yes
  Profiling timer resolution                      0ns
  Execution capabilities                          
    Run OpenCL kernels                            Yes
    Run native kernels                            No
  Device Extensions                               cl_khr_byte_addressable_store cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_fp64 cl_khr_fp16

NULL platform behavior
  clGetPlatformInfo(NULL, CL_PLATFORM_NAME, ...)  Clover
  clGetDeviceIDs(NULL, CL_DEVICE_TYPE_ALL, ...)   Success [MESA]
  clCreateContext(NULL, ...) [default]            Success [MESA]
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_DEFAULT)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_CPU)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_GPU)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_ACCELERATOR)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_CUSTOM)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_ALL)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)

ICD loader properties
  ICD loader Name                                 OpenCL ICD Loader
  ICD loader Vendor                               OCL Icd free software
  ICD loader Version                              2.2.12
  ICD loader Profile                              OpenCL 2.2

after installing opencl-amd log-conf.xml reads:

<?xml version="1.0" encoding="utf-8" ?>
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">

  <!-- == Log Appenders == -->
  
  <!-- Output the log message to system console.
 	-->
  <appender name="StdErrAppender" class="org.apache.log4j.ConsoleAppender">
    <param name="Target" value="System.err"/>
    <!-- other possible layout patterns
      
      the following appender creates a logfile in log4j XML format, suitable to viewing with
      XML log viewer such as Chainsaw (http://logging.apache.org/log4j/docs/chainsaw.html)
      <layout class="org.apache.log4j.xml.XMLLayout" />
      
      HTML table layout
      <layout class="org.apache.log4j.xml.HTMLLayout" />
      
      Time Thread Catagory layout
      <layout class="org.apache.log4j.TTCCLayout" />
    -->
    <layout class="org.apache.log4j.PatternLayout">
        <param name="ConversionPattern" value="[%t] | %-20.32c | %-5p | %d{ISO8601} | %m%n"/>
    </layout>
  </appender>

  <!-- On application startup, a log file named "rollinglog.log" will be create if not exist.
 	     When the log file reach beyond 5KB, it will be renamed "rollinglog.log.1", when the log
 	     index reach "rollinglog.log.5", the next rename will be back to "rollinglog.log.1" and
 	     overite the old log. 
 	-->
  <appender name="RollLogAppender" class="org.apache.log4j.RollingFileAppender">
    <param name="file" value="./logs/rollinglog.txt"/>
    <param name="append" value="true"/>
    <param name="MaxFileSize" value="2MB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
        <param name="ConversionPattern" value="[%t] | %-20.32c | %-5p | %d{ISO8601} | %m%n"/>
    </layout>
  </appender>

  <!-- == Log filter setting == -->
  
  <!-- Setup the root category, add the appenders and set the default level 
 	     5 level of logging,  ALL < DEBUG < INFO < WARN < ERROR < FATAL 
 	     The root level is set with INFO, which mean any message greater or same
 	     as INFO will be log down, in this case, DEBUG is not logged. 
 	     To log all regardless of logging level, set <priority value="ALL">
 	-->
  <root>
    <priority value="INFO" />
    <appender-ref ref="StdErrAppender"/>
    <appender-ref ref="RollLogAppender"/>
  </root>

  <!-- Example:
       Specify the target appender for SyManager
       Specify the level for SyManager
  -->
  <!-- 
  <category name="SyManager" >
    <priority value ="DEBUG" />
    
    <appender-ref ref="SyManagerAppender"/>
  </category>
  -->

</log4j:configuration>

after installing opencl-amd rollinglog.txt reads:

[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,739 | --------------------------------------------------------------------------------
[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,740 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,740 | --------------------------------------------------------------------------------
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,740 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,741 | Updating display GPU information...
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,741 | Detecting Main Display properties
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,753 | Process to detect main display has finished
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,765 | Fallback process to detect main display has finished
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | Setting LsManager.3.NumGPUs = 1
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:04,766 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:04,810 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,810 | 0 RED rocket cards available
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,810 | Decklink model name: '', version: ''
[0x7f9a723f7b80] | DVIP                 | INFO  | 2020-03-23 20:31:04,810 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f9a723f7b80] | SyManager            | WARN  | 2020-03-23 20:31:04,831 | Failed to load user preferences.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,859 | Finished loading Application style sheet
[0x7f9a723f7b80] | SyManager.MediaStorage | INFO  | 2020-03-23 20:31:04,944 | Creating default fsbookmarklist file: /home/joseph/.local/share/DaVinciResolve/configs/.fsbookmarklist
[0x7f9a4bc43700] | LeManager            | INFO  | 2020-03-23 20:31:04,944 | 521, 38
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Using default pooled memory manager
[0x7f9a4b442700] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | BtResourceManager Process Thread Started
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Daemon DPDecoder is started 21228
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Daemon DPDecoder is started 21229
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,599 | Daemon DPDecoder is started 21230
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,599 | Daemon DPDecoder is started 21231
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21232
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21233
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21234
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21235
[0x7f9a723f7b80] | SyManager            | INFO  | 2020-03-23 20:31:05,607 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f9a723f7b80] | SyManager            | INFO  | 2020-03-23 20:31:05,607 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f9a45c37700] | GsManager            | INFO  | 2020-03-23 20:31:05,607 | Gs Processor Thread ----- (140300572129024)

[0x7f9a723f7b80] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Using 8 generic IO threads
[0x7f9a43432700] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Dt Data Handler Thread Started
[0x7f9a723f7b80] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f9a4743a700] | SyManager            | ERROR | 2020-03-23 20:31:05,607 | Failed to connect to panel socket
[0x7f9a41c31700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a4743a700] | SyManager            | ERROR | 2020-03-23 20:31:05,608 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f9a3ec2b700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3c426700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a40c2f700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3fc2d700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3f42c700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a41430700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3dc29700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3d428700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3cc27700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a4042e700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3bc25700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3b424700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3ac23700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3a422700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a39c21700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a39420700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3e42a700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a723f7b80] | DbCommon2            | INFO  | 2020-03-23 20:31:05,609 | Creating default dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,609 | Let There Be OpenCL Light!
[0x7f9a723f7b80] | DbCommon2            | INFO  | 2020-03-23 20:31:05,609 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | Start detecting OpenCL boards
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | Skipping unqualified OpenCL platform: Clover
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | 0 OpenCL boards detected
[0x7f9a34c17700] | GPUManager           | ERROR | 2020-03-23 20:31:05,615 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f9a34c17700] | IP                   | ERROR | 2020-03-23 20:31:05,615 | Failed to initialize OpenCL boards
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,628 | Using DNxHR library v2.5.2.68r
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(0), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(2), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(4), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(6), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(8), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(9), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(10), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(11), thds(1)
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | --------------------------------------------------------------------------------
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | --------------------------------------------------------------------------------
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,617 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,617 | Updating display GPU information...
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,860 | Detecting Main Display properties
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,870 | Process to detect main display has finished
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Fallback process to detect main display has finished
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Setting LsManager.3.NumGPUs = 1
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:03,887 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:03,929 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,929 | 0 RED rocket cards available
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,929 | Decklink model name: '', version: ''
[0x7f6403a34b80] | DVIP                 | INFO  | 2020-03-23 20:33:03,929 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,966 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,966 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,967 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,985 | Finished loading Application style sheet
[0x7f63dd0ea700] | LeManager            | INFO  | 2020-03-23 20:33:04,111 | 521, 38
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,764 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,764 | Using default pooled memory manager
[0x7f63dc8e9700] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | BtResourceManager Process Thread Started
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21644
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21645
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21646
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21647
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21648
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21649
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,767 | Daemon DPDecoder is started 21650
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,767 | Daemon DPDecoder is started 21651
[0x7f6403a34b80] | SyManager            | INFO  | 2020-03-23 20:33:04,773 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f6403a34b80] | SyManager            | INFO  | 2020-03-23 20:33:04,773 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f63d88e1700] | SyManager            | ERROR | 2020-03-23 20:33:04,774 | Failed to connect to panel socket
[0x7f63d70de700] | GsManager            | INFO  | 2020-03-23 20:33:04,774 | Gs Processor Thread ----- (140066786502400)

[0x7f63d88e1700] | SyManager            | ERROR | 2020-03-23 20:33:04,774 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f6403a34b80] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Using 8 generic IO threads
[0x7f63d28d9700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Data Handler Thread Started
[0x7f6403a34b80] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f63d20d8700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d18d7700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d10d6700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63ce0d0700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d00d4700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cb8cb700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63cf0d2700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d08d5700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63ce8d1700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cd8cf700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cc8cd700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cc0cc700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63cf8d3700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cb0ca700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63ca0c8700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63ca8c9700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63c98c7700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f6403a34b80] | DbCommon2            | INFO  | 2020-03-23 20:33:04,775 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,775 | Let There Be OpenCL Light!
[0x7f63cd0ce700] | DtManager            | INFO  | 2020-03-23 20:33:04,776 | Dt Worker Thread Started
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | Start detecting OpenCL boards
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | Skipping unqualified OpenCL platform: Clover
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | 0 OpenCL boards detected
[0x7f63c50be700] | GPUManager           | ERROR | 2020-03-23 20:33:04,781 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f63c50be700] | IP                   | ERROR | 2020-03-23 20:33:04,781 | Failed to initialize OpenCL boards
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,785 | Using DNxHR library v2.5.2.68r
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(0), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(2), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(4), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(6), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(8), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(9), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(10), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(11), thds(1)
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,297 | --------------------------------------------------------------------------------
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,298 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,298 | --------------------------------------------------------------------------------
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,298 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,299 | Updating display GPU information...
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,518 | Detecting Main Display properties
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,529 | Process to detect main display has finished
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,545 | Fallback process to detect main display has finished
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | Setting LsManager.3.NumGPUs = 1
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:27,546 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:27,587 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,587 | 0 RED rocket cards available
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,587 | Decklink model name: '', version: ''
[0x7f3822efeb80] | DVIP                 | INFO  | 2020-03-23 20:41:27,587 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,619 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,619 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,620 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,637 | Finished loading Application style sheet
[0x7f37fc5b4700] | LeManager            | INFO  | 2020-03-23 20:41:27,765 | 521, 38
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Using default pooled memory manager
[0x7f37fbdb3700] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | BtResourceManager Process Thread Started
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Daemon DPDecoder is started 22104
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Daemon DPDecoder is started 22105
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22106
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22107
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22108
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,408 | Daemon DPDecoder is started 22109
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,408 | Daemon DPDecoder is started 22110
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,409 | Daemon DPDecoder is started 22111
[0x7f3822efeb80] | SyManager            | INFO  | 2020-03-23 20:41:28,415 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f3822efeb80] | SyManager            | INFO  | 2020-03-23 20:41:28,415 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f37f65a8700] | GsManager            | INFO  | 2020-03-23 20:41:28,416 | Gs Processor Thread ----- (139878333056768)

[0x7f37f7dab700] | SyManager            | ERROR | 2020-03-23 20:41:28,416 | Failed to connect to panel socket
[0x7f3822efeb80] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Using 8 generic IO threads
[0x7f37f7dab700] | SyManager            | ERROR | 2020-03-23 20:41:28,416 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f3822efeb80] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f37f25a3700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Data Handler Thread Started
[0x7f37f05a2700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37efda1700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37eed9f700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ef5a0700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ead97700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ee59e700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37edd9d700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ec59a700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ecd9b700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ebd99700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e9d95700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37eb598700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ea596700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ed59c700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e9594700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e8d93700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e8592700] | DtManager            | INFO  | 2020-03-23 20:41:28,417 | Dt Worker Thread Started
[0x7f37e7d91700] | DtManager            | INFO  | 2020-03-23 20:41:28,417 | Dt Worker Thread Started
[0x7f3822efeb80] | DbCommon2            | INFO  | 2020-03-23 20:41:28,417 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,417 | Let There Be OpenCL Light!
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | Start detecting OpenCL boards
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | Skipping unqualified OpenCL platform: Clover
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | 0 OpenCL boards detected
[0x7f37e3588700] | GPUManager           | ERROR | 2020-03-23 20:41:28,422 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f37e3588700] | IP                   | ERROR | 2020-03-23 20:41:28,422 | Failed to initialize OpenCL boards
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,426 | Using DNxHR library v2.5.2.68r
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(0), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(2), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(4), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(6), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(8), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(9), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(10), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(11), thds(1)
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,548 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,549 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,550 | Updating display GPU information...
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,773 | Detecting Main Display properties
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,785 | Process to detect main display has finished
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,803 | Fallback process to detect main display has finished
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | Setting LsManager.3.NumGPUs = 1
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:22,804 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:22,847 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,847 | 0 RED rocket cards available
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,847 | Decklink model name: '', version: ''
[0x7f3965880b80] | DVIP                 | INFO  | 2020-03-23 20:42:22,847 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,896 | Finished loading Application style sheet
[0x7f393ef36700] | LeManager            | INFO  | 2020-03-23 20:42:23,025 | 521, 38
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | Using default pooled memory manager
[0x7f393e735700] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | BtResourceManager Process Thread Started
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,651 | Daemon DPDecoder is started 22329
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,651 | Daemon DPDecoder is started 22330
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22331
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22332
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22333
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22334
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,653 | Daemon DPDecoder is started 22335
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,653 | Daemon DPDecoder is started 22336
[0x7f3965880b80] | SyManager            | INFO  | 2020-03-23 20:42:23,660 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f3965880b80] | SyManager            | INFO  | 2020-03-23 20:42:23,660 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f393a72d700] | SyManager            | ERROR | 2020-03-23 20:42:23,660 | Failed to connect to panel socket
[0x7f3965880b80] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Using 8 generic IO threads
[0x7f3938f2a700] | GsManager            | INFO  | 2020-03-23 20:42:23,660 | Gs Processor Thread ----- (139883745289984)

[0x7f3934725700] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Dt Data Handler Thread Started
[0x7f393a72d700] | SyManager            | ERROR | 2020-03-23 20:42:23,660 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f3965880b80] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f3933f24700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3932721700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3933723700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3932f22700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f393171f700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3930f1e700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3931f20700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f393071d700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392ff1c700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392f71b700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392e719700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392df18700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392ef1a700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392d717700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392bf14700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392c715700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392b713700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392cf16700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3965880b80] | DbCommon2            | INFO  | 2020-03-23 20:42:23,662 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,662 | Let There Be OpenCL Light!
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | Start detecting OpenCL boards
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | Skipping unqualified OpenCL platform: Clover
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | 0 OpenCL boards detected
[0x7f3926f0a700] | GPUManager           | ERROR | 2020-03-23 20:42:23,667 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f3926f0a700] | IP                   | ERROR | 2020-03-23 20:42:23,667 | Failed to initialize OpenCL boards
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,670 | Using DNxHR library v2.5.2.68r
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,673 | Kdu ctx(0), bundle(0), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(2), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(4), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(6), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(8), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(9), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(10), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(11), thds(1)
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | --------------------------------------------------------------------------------
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | --------------------------------------------------------------------------------
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,037 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,038 | Updating display GPU information...
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,276 | Detecting Main Display properties
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,288 | Process to detect main display has finished
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Fallback process to detect main display has finished
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Setting LsManager.3.NumGPUs = 1
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:13,301 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:13,345 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,345 | 0 RED rocket cards available
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,345 | Decklink model name: '', version: ''
[0x7fda7828db80] | DVIP                 | INFO  | 2020-03-23 20:43:13,345 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7fda7828db80] | SyManager            | WARN  | 2020-03-23 20:43:13,367 | Failed to load user preferences.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,377 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,378 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,378 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,396 | Finished loading Application style sheet
[0x7fda7828db80] | SyManager.MediaStorage | INFO  | 2020-03-23 20:43:13,511 | Creating default fsbookmarklist file: /root/.local/share/DaVinciResolve/configs/.fsbookmarklist
[0x7fda51943700] | LeManager            | INFO  | 2020-03-23 20:43:13,520 | 521, 38
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Memory config: reserved=6000M pinned=4000M log=0
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Using default pooled memory manager
[0x7fda51142700] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | BtResourceManager Process Thread Started
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Daemon DPDecoder is started 22653
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22654
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22655
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22656
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22657
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,149 | Daemon DPDecoder is started 22658
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,149 | Daemon DPDecoder is started 22659
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,150 | Daemon DPDecoder is started 22660
[0x7fda7828db80] | SyManager            | INFO  | 2020-03-23 20:43:14,156 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7fda7828db80] | SyManager            | INFO  | 2020-03-23 20:43:14,156 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7fda4d13a700] | SyManager            | ERROR | 2020-03-23 20:43:14,156 | Failed to connect to panel socket
[0x7fda4b937700] | GsManager            | INFO  | 2020-03-23 20:43:14,156 | Gs Processor Thread ----- (140575547553536)

[0x7fda4d13a700] | SyManager            | ERROR | 2020-03-23 20:43:14,156 | DRIVER: open /var/tmp/davinci_socket failed
[0x7fda7828db80] | DtManager            | INFO  | 2020-03-23 20:43:14,156 | Using 8 generic IO threads
[0x7fda49132700] | DtManager            | INFO  | 2020-03-23 20:43:14,156 | Dt Data Handler Thread Started
[0x7fda7828db80] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7fda46931700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda46130700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4512e700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4592f700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda40925700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4492d700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4392b700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4312a700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda42128700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda42929700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda41927700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda41126700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda7828db80] | DbCommon2            | INFO  | 2020-03-23 20:43:14,158 | Creating default dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7fda40124700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3f923700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3f122700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3e921700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3e120700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,158 | Let There Be OpenCL Light!
[0x7fda4412c700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda7828db80] | DbCommon2            | INFO  | 2020-03-23 20:43:14,158 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | Start detecting OpenCL boards
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | Skipping unqualified OpenCL platform: Clover
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | 0 OpenCL boards detected
[0x7fda39917700] | GPUManager           | ERROR | 2020-03-23 20:43:14,162 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7fda39917700] | IP                   | ERROR | 2020-03-23 20:43:14,162 | Failed to initialize OpenCL boards
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,166 | Using DNxHR library v2.5.2.68r
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(0), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(2), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(4), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(6), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(8), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(9), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(10), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,170 | Kdu ctx(0), bundle(11), thds(1)
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,352 | --------------------------------------------------------------------------------
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,353 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,353 | --------------------------------------------------------------------------------
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,353 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,354 | Updating display GPU information...
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,574 | Detecting Main Display properties
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,588 | Process to detect main display has finished
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,602 | Fallback process to detect main display has finished
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | Setting LsManager.3.NumGPUs = 1
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:56,603 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:56,645 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,645 | 0 RED rocket cards available
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,645 | Decklink model name: '', version: ''
[0x7f0f9647bb80] | DVIP                 | INFO  | 2020-03-23 20:57:56,645 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,692 | Finished loading Application style sheet
[0x7f0f6fb31700] | LeManager            | INFO  | 2020-03-23 20:57:56,830 | 521, 38
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,456 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Using default pooled memory manager
[0x7f0f6f330700] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | BtResourceManager Process Thread Started
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Daemon DPDecoder is started 24656
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Daemon DPDecoder is started 24657
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24658
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24659
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24660
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24661
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24662
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24663
[0x7f0f9647bb80] | SyManager            | INFO  | 2020-03-23 20:57:57,466 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f0f9647bb80] | SyManager            | INFO  | 2020-03-23 20:57:57,466 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f0f6b328700] | SyManager            | ERROR | 2020-03-23 20:57:57,466 | Failed to connect to panel socket
[0x7f0f69b25700] | GsManager            | INFO  | 2020-03-23 20:57:57,466 | Gs Processor Thread ----- (139704174532352)

[0x7f0f6b328700] | SyManager            | ERROR | 2020-03-23 20:57:57,466 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f0f9647bb80] | DtManager            | INFO  | 2020-03-23 20:57:57,466 | Using 8 generic IO threads
[0x7f0f66f20700] | DtManager            | INFO  | 2020-03-23 20:57:57,466 | Dt Data Handler Thread Started
[0x7f0f9647bb80] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f0f64b1f700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6431e700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f63b1d700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f61b19700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f62b1b700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5cb0f700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f61318700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f60b17700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f60316700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5fb15700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6331c700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5f314700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5e312700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5eb13700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5db11700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5d310700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6231a700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5c30e700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f9647bb80] | DbCommon2            | INFO  | 2020-03-23 20:57:57,468 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,468 | Let There Be OpenCL Light!
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | Start detecting OpenCL boards
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | Skipping unqualified OpenCL platform: Clover
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | 0 OpenCL boards detected
[0x7f0f57b05700] | GPUManager           | ERROR | 2020-03-23 20:57:57,473 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f0f57b05700] | IP                   | ERROR | 2020-03-23 20:57:57,473 | Failed to initialize OpenCL boards
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,476 | Using DNxHR library v2.5.2.68r
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(0), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(2), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(4), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(6), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(8), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(9), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(10), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(11), thds(1)
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | --------------------------------------------------------------------------------
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | --------------------------------------------------------------------------------
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:34,823 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:34,823 | Updating display GPU information...
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,042 | Detecting Main Display properties
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,052 | Process to detect main display has finished
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,064 | Fallback process to detect main display has finished
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | Setting LsManager.3.NumGPUs = 1
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,065 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,105 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,105 | 0 RED rocket cards available
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,105 | Decklink model name: '', version: ''
[0x7f1ab4487b80] | DVIP                 | INFO  | 2020-03-23 21:02:35,105 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,139 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,140 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,140 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,159 | Finished loading Application style sheet
[0x7f1a8db3d700] | LeManager            | INFO  | 2020-03-23 21:02:35,290 | 521, 38
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | Using default pooled memory manager
[0x7f1a8d33c700] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | BtResourceManager Process Thread Started
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,920 | Daemon DPDecoder is started 25082
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,920 | Daemon DPDecoder is started 25083
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25084
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25085
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25086
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25087
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,922 | Daemon DPDecoder is started 25088
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,922 | Daemon DPDecoder is started 25089
[0x7f1ab4487b80] | SyManager            | INFO  | 2020-03-23 21:02:35,929 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f1ab4487b80] | SyManager            | INFO  | 2020-03-23 21:02:35,929 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f1a89334700] | SyManager            | ERROR | 2020-03-23 21:02:35,929 | Failed to connect to panel socket
[0x7f1a87b31700] | GsManager            | INFO  | 2020-03-23 21:02:35,929 | Gs Processor Thread ----- (139751922538240)

[0x7f1a89334700] | SyManager            | ERROR | 2020-03-23 21:02:35,929 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f1ab4487b80] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Using 8 generic IO threads
[0x7f1a8432c700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Data Handler Thread Started
[0x7f1ab4487b80] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f1a83b2b700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a8332a700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a82b29700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a82328700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a81326700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a81b27700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7fb23700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a80b25700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a80324700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7eb21700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7f322700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7e320700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7d31e700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7db1f700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7c31c700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7cb1d700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7b31a700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7bb1b700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1ab4487b80] | DbCommon2            | INFO  | 2020-03-23 21:02:35,930 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,930 | Let There Be OpenCL Light!
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | Start detecting OpenCL boards
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | Skipping unqualified OpenCL platform: Clover
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | 0 OpenCL boards detected
[0x7f1a76b11700] | GPUManager           | ERROR | 2020-03-23 21:02:35,935 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f1a76b11700] | IP                   | ERROR | 2020-03-23 21:02:35,935 | Failed to initialize OpenCL boards
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,938 | Using DNxHR library v2.5.2.68r
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(0), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(2), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(4), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(6), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(8), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(9), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(10), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(11), thds(1)
[0x7f13b40c8b80] | Undefined            | INFO  | 2020-03-23 21:38:11,310 | --------------------------------------------------------------------------------
[0x7f13b40c8b80] | Undefined            | INFO  | 2020-03-23 21:38:11,310 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f13b40c8b80] | Undefined            | INFO  | 2020-03-23 21:38:11,311 | --------------------------------------------------------------------------------
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,311 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,312 | Updating display GPU information...
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,583 | Detecting Main Display properties
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,596 | Process to detect main display has finished
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,609 | Fallback process to detect main display has finished
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,609 | GPU Name = 'Unknown AMD GPU', Main display = 0
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,610 | 1 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,610 | Not GLmap capable. GPUs: 1 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,610 | Setting LsManager.3.NumGPUs = 1
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:11,610 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:11,652 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,652 | 0 RED rocket cards available
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,652 | Decklink model name: '', version: ''
[0x7f13b40c8b80] | DVIP                 | INFO  | 2020-03-23 21:38:11,652 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,689 | Installed custom font: Open Sans
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,689 | Installed custom font: Open Sans
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,689 | Installed custom font: Open Sans
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,708 | Finished loading Application style sheet
[0x7f1379111700] | LeManager            | INFO  | 2020-03-23 21:38:11,831 | 521, 38
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | Using default pooled memory manager
[0x7f1378910700] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | BtResourceManager Process Thread Started
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | Daemon DPDecoder is started 31015
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,460 | Daemon DPDecoder is started 31016
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,460 | Daemon DPDecoder is started 31017
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,460 | Daemon DPDecoder is started 31018
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,461 | Daemon DPDecoder is started 31019
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,461 | Daemon DPDecoder is started 31020
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,461 | Daemon DPDecoder is started 31021
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,462 | Daemon DPDecoder is started 31022
[0x7f13b40c8b80] | SyManager            | INFO  | 2020-03-23 21:38:12,468 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f13b40c8b80] | SyManager            | INFO  | 2020-03-23 21:38:12,468 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f1373105700] | GsManager            | INFO  | 2020-03-23 21:38:12,469 | Gs Processor Thread ----- (139721511556864)

[0x7f1374908700] | SyManager            | ERROR | 2020-03-23 21:38:12,469 | Failed to connect to panel socket
[0x7f13b40c8b80] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Using 8 generic IO threads
[0x7f1374908700] | SyManager            | ERROR | 2020-03-23 21:38:12,469 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f1370900700] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Dt Data Handler Thread Started
[0x7f13b40c8b80] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f136f8fe700] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Dt Worker Thread Started
[0x7f136e0fb700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136b0f5700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136d0f9700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136e8fc700] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Dt Worker Thread Started
[0x7f13700ff700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136c0f7700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13698f2700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136c8f8700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136f0fd700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136b8f6700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136a8f4700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136a0f3700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13690f1700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13688f0700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13678ee700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13680ef700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136d8fa700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13b40c8b80] | DbCommon2            | INFO  | 2020-03-23 21:38:12,470 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,470 | Let There Be OpenCL Light!
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Start detecting OpenCL boards
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Skipping unqualified OpenCL platform: Clover
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Found qualified OpenCL board 0: platform - AMD Accelerated Parallel Processing, vendor - Advanced Micro Devices, Inc., id - 0x7f138f9e1f10, device name - Unknown AMD GPU id - 0x7f13ad666b10, global memory size (MB) - 8176, local memory size (KB) - 64, max global memory alloc size (MB) - 4048
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | 1 OpenCL boards detected
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Board manager thread id 0x5c6f8700 policy 0 priority 0
[0x7f135c6f8700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Initializing GPU board 0 with context thread 0
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,479 | Using DNxHR library v2.5.2.68r
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(0), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(2), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(4), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(6), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(8), thds(1)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(9), thds(1)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(10), thds(1)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(11), thds(1)

after installing opencl-amd the output of /etc/OpenCL/vendors is:

amdocl64.icd  amdocl-orca64.icd  mesa.icd

after installing opencl-amd the output to clinfo is:

Number of platforms                               2
  Platform Name                                   Clover
  Platform Vendor                                 Mesa
  Platform Version                                OpenCL 1.1 Mesa 19.3.4
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd
  Platform Extensions function suffix             MESA

  Platform Name                                   AMD Accelerated Parallel Processing
  Platform Vendor                                 Advanced Micro Devices, Inc.
  Platform Version                                OpenCL 2.1 AMD-APP (3004.6)
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd cl_amd_event_callback cl_amd_offline_devices 
  Platform Host timer resolution                  1ns
  Platform Extensions function suffix             AMD

  Platform Name                                   Clover
Number of devices                                 1
  Device Name                                     AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)
  Device Vendor                                   AMD
  Device Vendor ID                                0x1002
  Device Version                                  OpenCL 1.1 Mesa 19.3.4
  Driver Version                                  19.3.4
  Device OpenCL C Version                         OpenCL C 1.1 
  Device Type                                     GPU
  Device Profile                                  FULL_PROFILE
  Device Available                                Yes
  Compiler Available                              Yes
  Max compute units                               40
  Max clock frequency                             2010MHz
  Max work item dimensions                        3
  Max work item sizes                             256x256x256
  Max work group size                             256
=== CL_PROGRAM_BUILD_LOG ===
fatal error: cannot open file '/usr/lib/clc/gfx1010-amdgcn-mesa-mesa3d.bc': No such file or directory
  Preferred work group size multiple              <getWGsizes:1200: create kernel : error -46>
  Preferred / native vector sizes                 
    char                                                16 / 16      
    short                                                8 / 8       
    int                                                  4 / 4       
    long                                                 2 / 2       
    half                                                 8 / 8        (cl_khr_fp16)
    float                                                4 / 4       
    double                                               2 / 2        (cl_khr_fp64)
  Half-precision Floating-point support           (cl_khr_fp16)
    Denormals                                     No
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 No
    Round to infinity                             No
    IEEE754-2008 fused multiply-add               No
    Support is emulated in software               No
  Single-precision Floating-point support         (core)
    Denormals                                     No
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 No
    Round to infinity                             No
    IEEE754-2008 fused multiply-add               No
    Support is emulated in software               No
    Correctly-rounded divide and sqrt operations  No
  Double-precision Floating-point support         (cl_khr_fp64)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
  Address bits                                    64, Little-Endian
  Global memory size                              8589934592 (8GiB)
  Error Correction support                        No
  Max memory allocation                           6871947673 (6.4GiB)
  Unified memory for Host and Device              No
  Minimum alignment for any data type             128 bytes
  Alignment of base address                       32768 bits (4096 bytes)
  Global Memory cache type                        None
  Image support                                   No
  Local memory type                               Local
  Local memory size                               32768 (32KiB)
  Max number of constant args                     16
  Max constant buffer size                        2147483647 (2GiB)
  Max size of kernel argument                     1024
  Queue properties                                
    Out-of-order execution                        No
    Profiling                                     Yes
  Profiling timer resolution                      0ns
  Execution capabilities                          
    Run OpenCL kernels                            Yes
    Run native kernels                            No
  Device Extensions                               cl_khr_byte_addressable_store cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_fp64 cl_khr_fp16

  Platform Name                                   AMD Accelerated Parallel Processing
Number of devices                                 1
  Device Name                                     gfx1010
  Device Vendor                                   Advanced Micro Devices, Inc.
  Device Vendor ID                                0x1002
  Device Version                                  OpenCL 2.0 AMD-APP (3004.6)
  Driver Version                                  3004.6 (PAL,LC)
  Device OpenCL C Version                         OpenCL C 2.0 
  Device Type                                     GPU
  Device Board Name (AMD)                         Unknown AMD GPU
  Device Topology (AMD)                           PCI-E, 06:00.0
  Device Profile                                  FULL_PROFILE
  Device Available                                Yes
  Compiler Available                              Yes
  Linker Available                                Yes
  Max compute units                               20
  SIMD per compute unit (AMD)                     2
  SIMD width (AMD)                                32
  SIMD instruction width (AMD)                    1
  Max clock frequency                             2010MHz
  Graphics IP (AMD)                               10.10
  Device Partition                                (core)
    Max number of sub-devices                     20
    Supported partition types                     None
    Supported affinity domains                    (n/a)
  Max work item dimensions                        3
  Max work item sizes                             1024x1024x1024
  Max work group size                             256
  Preferred work group size (AMD)                 256
  Max work group size (AMD)                       1024
  Preferred work group size multiple              32
  Wavefront width (AMD)                           32
  Preferred / native vector sizes                 
    char                                                 4 / 4       
    short                                                2 / 2       
    int                                                  1 / 1       
    long                                                 1 / 1       
    half                                                 1 / 1        (cl_khr_fp16)
    float                                                1 / 1       
    double                                               1 / 1        (cl_khr_fp64)
  Half-precision Floating-point support           (cl_khr_fp16)
    Denormals                                     No
    Infinity and NANs                             No
    Round to nearest                              No
    Round to zero                                 No
    Round to infinity                             No
    IEEE754-2008 fused multiply-add               No
    Support is emulated in software               No
  Single-precision Floating-point support         (core)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
    Correctly-rounded divide and sqrt operations  Yes
  Double-precision Floating-point support         (cl_khr_fp64)
    Denormals                                     Yes
    Infinity and NANs                             Yes
    Round to nearest                              Yes
    Round to zero                                 Yes
    Round to infinity                             Yes
    IEEE754-2008 fused multiply-add               Yes
    Support is emulated in software               No
  Address bits                                    64, Little-Endian
  Global memory size                              8573157376 (7.984GiB)
  Global free memory (AMD)                        8306688 (7.922GiB)
  Global memory channels (AMD)                    8
  Global memory banks per channel (AMD)           4
  Global memory bank width (AMD)                  256 bytes
  Error Correction support                        No
  Max memory allocation                           4244635648 (3.953GiB)
  Unified memory for Host and Device              No
  Shared Virtual Memory (SVM) capabilities        (core)
    Coarse-grained buffer sharing                 Yes
    Fine-grained buffer sharing                   Yes
    Fine-grained system sharing                   No
    Atomics                                       No
  Minimum alignment for any data type             128 bytes
  Alignment of base address                       2048 bits (256 bytes)
  Preferred alignment for atomics                 
    SVM                                           0 bytes
    Global                                        0 bytes
    Local                                         0 bytes
  Max size for global variable                    3820172032 (3.558GiB)
  Preferred total size of global vars             8573157376 (7.984GiB)
  Global Memory cache type                        Read/Write
  Global Memory cache size                        16384 (16KiB)
  Global Memory cache line size                   64 bytes
  Image support                                   Yes
    Max number of samplers per kernel             16
    Max size for 1D images from buffer            134217728 pixels
    Max 1D or 2D image array size                 2048 images
    Base address alignment for 2D image buffers   256 bytes
    Pitch alignment for 2D image buffers          256 pixels
    Max 2D image size                             16384x16384 pixels
    Max 3D image size                             2048x2048x2048 pixels
    Max number of read image args                 128
    Max number of write image args                64
    Max number of read/write image args           64
  Max number of pipe args                         16
  Max active pipe reservations                    16
  Max pipe packet size                            4244635648 (3.953GiB)
  Local memory type                               Local
  Local memory size                               65536 (64KiB)
  Local memory syze per CU (AMD)                  65536 (64KiB)
  Local memory banks (AMD)                        32
  Max number of constant args                     8
  Max constant buffer size                        4244635648 (3.953GiB)
  Preferred constant buffer size (AMD)            16384 (16KiB)
  Max size of kernel argument                     1024
  Queue properties (on host)                      
    Out-of-order execution                        No
    Profiling                                     Yes
  Queue properties (on device)                    
    Out-of-order execution                        Yes
    Profiling                                     Yes
    Preferred size                                262144 (256KiB)
    Max size                                      8388608 (8MiB)
  Max queues on device                            1
  Max events on device                            1024
  Prefer user sync for interop                    Yes
  Number of P2P devices (AMD)                     0
  P2P devices (AMD)                               <printDeviceInfo:147: get number of CL_DEVICE_P2P_DEVICES_AMD : error -30>
  Profiling timer resolution                      1ns
  Profiling timer offset since Epoch (AMD)        1584941159401810362ns (Mon Mar 23 16:25:59 2020)
  Execution capabilities                          
    Run OpenCL kernels                            Yes
    Run native kernels                            No
    Thread trace supported (AMD)                  Yes
    Number of async queues (AMD)                  4
    Max real-time compute queues (AMD)            0
    Max real-time compute units (AMD)             0
  printf() buffer size                            4194304 (4MiB)
  Built-in kernels                                (n/a)
  Device Extensions                               cl_khr_fp64 cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_int64_base_atomics cl_khr_int64_extended_atomics cl_khr_3d_image_writes cl_khr_byte_addressable_store cl_khr_fp16 cl_khr_gl_sharing cl_khr_gl_depth_images cl_amd_device_attribute_query cl_amd_media_ops cl_amd_media_ops2 cl_khr_image2d_from_buffer cl_khr_subgroups cl_khr_gl_event cl_khr_depth_images cl_khr_mipmap_image cl_khr_mipmap_image_writes cl_amd_copy_buffer_p2p 


NULL platform behavior
  clGetPlatformInfo(NULL, CL_PLATFORM_NAME, ...)  Clover
  clGetDeviceIDs(NULL, CL_DEVICE_TYPE_ALL, ...)   Success [MESA]
  clCreateContext(NULL, ...) [default]            Success [MESA]
  clCreateContext(NULL, ...) [other]              Success [AMD]
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_DEFAULT)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_CPU)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_GPU)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_ACCELERATOR)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_CUSTOM)  No devices found in platform
  clCreateContextFromType(NULL, CL_DEVICE_TYPE_ALL)  Success (1)
    Platform Name                                 Clover
    Device Name                                   AMD NAVI10 (DRM 3.36.0, 5.5.10-arch1-1, LLVM 9.0.1)

ICD loader properties
  ICD loader Name                                 OpenCL ICD Loader
  ICD loader Vendor                               OCL Icd free software
  ICD loader Version                              2.2.12
  ICD loader Profile                              OpenCL 2.2

Offline

#2 2020-03-23 13:45:47

Ropid
Member
Registered: 2015-03-09
Posts: 1,069

Re: How to enable AMDGPU-PRO only for one application

Try to remove "opencl-mesa", maybe programs get confused by it. You also simply don't need opencl-mesa if you have opencl-amd installed.

Last edited by Ropid (2020-03-23 13:47:03)

Offline

#3 2020-03-23 22:32:23

Candroidgenie
Member
Registered: 2020-03-23
Posts: 11

Re: How to enable AMDGPU-PRO only for one application

I just tried that and it didn't change anything. Resolve still doesn't get past the initial loading screen.
Looking at rollinglog.txt it appears that resolve but a few steps further but only that.

[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,739 | --------------------------------------------------------------------------------
[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,740 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f9a723f7b80] | Undefined            | INFO  | 2020-03-23 20:31:04,740 | --------------------------------------------------------------------------------
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,740 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,741 | Updating display GPU information...
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,741 | Detecting Main Display properties
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,753 | Process to detect main display has finished
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,765 | Fallback process to detect main display has finished
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,766 | Setting LsManager.3.NumGPUs = 1
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:04,766 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:04,810 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,810 | 0 RED rocket cards available
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,810 | Decklink model name: '', version: ''
[0x7f9a723f7b80] | DVIP                 | INFO  | 2020-03-23 20:31:04,810 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f9a723f7b80] | SyManager            | WARN  | 2020-03-23 20:31:04,831 | Failed to load user preferences.
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,841 | Installed custom font: Open Sans
[0x7f9a723f7b80] | Main                 | INFO  | 2020-03-23 20:31:04,859 | Finished loading Application style sheet
[0x7f9a723f7b80] | SyManager.MediaStorage | INFO  | 2020-03-23 20:31:04,944 | Creating default fsbookmarklist file: /home/joseph/.local/share/DaVinciResolve/configs/.fsbookmarklist
[0x7f9a4bc43700] | LeManager            | INFO  | 2020-03-23 20:31:04,944 | 521, 38
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Using default pooled memory manager
[0x7f9a4b442700] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | BtResourceManager Process Thread Started
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Daemon DPDecoder is started 21228
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,598 | Daemon DPDecoder is started 21229
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,599 | Daemon DPDecoder is started 21230
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,599 | Daemon DPDecoder is started 21231
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21232
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21233
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21234
[0x7f9a723f7b80] | BtCommon             | INFO  | 2020-03-23 20:31:05,600 | Daemon DPDecoder is started 21235
[0x7f9a723f7b80] | SyManager            | INFO  | 2020-03-23 20:31:05,607 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f9a723f7b80] | SyManager            | INFO  | 2020-03-23 20:31:05,607 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f9a45c37700] | GsManager            | INFO  | 2020-03-23 20:31:05,607 | Gs Processor Thread ----- (140300572129024)

[0x7f9a723f7b80] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Using 8 generic IO threads
[0x7f9a43432700] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Dt Data Handler Thread Started
[0x7f9a723f7b80] | DtManager            | INFO  | 2020-03-23 20:31:05,607 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f9a4743a700] | SyManager            | ERROR | 2020-03-23 20:31:05,607 | Failed to connect to panel socket
[0x7f9a41c31700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a4743a700] | SyManager            | ERROR | 2020-03-23 20:31:05,608 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f9a3ec2b700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3c426700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a40c2f700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3fc2d700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3f42c700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a41430700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3dc29700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3d428700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3cc27700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a4042e700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3bc25700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3b424700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3ac23700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3a422700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a39c21700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a39420700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a3e42a700] | DtManager            | INFO  | 2020-03-23 20:31:05,608 | Dt Worker Thread Started
[0x7f9a723f7b80] | DbCommon2            | INFO  | 2020-03-23 20:31:05,609 | Creating default dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,609 | Let There Be OpenCL Light!
[0x7f9a723f7b80] | DbCommon2            | INFO  | 2020-03-23 20:31:05,609 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | Start detecting OpenCL boards
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | Skipping unqualified OpenCL platform: Clover
[0x7f9a34c17700] | GPUManager           | INFO  | 2020-03-23 20:31:05,615 | 0 OpenCL boards detected
[0x7f9a34c17700] | GPUManager           | ERROR | 2020-03-23 20:31:05,615 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f9a34c17700] | IP                   | ERROR | 2020-03-23 20:31:05,615 | Failed to initialize OpenCL boards
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,628 | Using DNxHR library v2.5.2.68r
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(0), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(2), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(4), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(6), thds(2)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(8), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(9), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(10), thds(1)
[0x7f9a723f7b80] | IO                   | INFO  | 2020-03-23 20:31:05,632 | Kdu ctx(0), bundle(11), thds(1)
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | --------------------------------------------------------------------------------
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f6403a34b80] | Undefined            | INFO  | 2020-03-23 20:33:03,616 | --------------------------------------------------------------------------------
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,617 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,617 | Updating display GPU information...
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,860 | Detecting Main Display properties
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,870 | Process to detect main display has finished
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Fallback process to detect main display has finished
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,887 | Setting LsManager.3.NumGPUs = 1
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:03,887 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:03,929 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,929 | 0 RED rocket cards available
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,929 | Decklink model name: '', version: ''
[0x7f6403a34b80] | DVIP                 | INFO  | 2020-03-23 20:33:03,929 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,966 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,966 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,967 | Installed custom font: Open Sans
[0x7f6403a34b80] | Main                 | INFO  | 2020-03-23 20:33:03,985 | Finished loading Application style sheet
[0x7f63dd0ea700] | LeManager            | INFO  | 2020-03-23 20:33:04,111 | 521, 38
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,764 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,764 | Using default pooled memory manager
[0x7f63dc8e9700] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | BtResourceManager Process Thread Started
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21644
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21645
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,765 | Daemon DPDecoder is started 21646
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21647
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21648
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,766 | Daemon DPDecoder is started 21649
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,767 | Daemon DPDecoder is started 21650
[0x7f6403a34b80] | BtCommon             | INFO  | 2020-03-23 20:33:04,767 | Daemon DPDecoder is started 21651
[0x7f6403a34b80] | SyManager            | INFO  | 2020-03-23 20:33:04,773 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f6403a34b80] | SyManager            | INFO  | 2020-03-23 20:33:04,773 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f63d88e1700] | SyManager            | ERROR | 2020-03-23 20:33:04,774 | Failed to connect to panel socket
[0x7f63d70de700] | GsManager            | INFO  | 2020-03-23 20:33:04,774 | Gs Processor Thread ----- (140066786502400)

[0x7f63d88e1700] | SyManager            | ERROR | 2020-03-23 20:33:04,774 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f6403a34b80] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Using 8 generic IO threads
[0x7f63d28d9700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Data Handler Thread Started
[0x7f6403a34b80] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f63d20d8700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d18d7700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d10d6700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63ce0d0700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d00d4700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cb8cb700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63cf0d2700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63d08d5700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63ce8d1700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cd8cf700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cc8cd700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cc0cc700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63cf8d3700] | DtManager            | INFO  | 2020-03-23 20:33:04,774 | Dt Worker Thread Started
[0x7f63cb0ca700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63ca0c8700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63ca8c9700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f63c98c7700] | DtManager            | INFO  | 2020-03-23 20:33:04,775 | Dt Worker Thread Started
[0x7f6403a34b80] | DbCommon2            | INFO  | 2020-03-23 20:33:04,775 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,775 | Let There Be OpenCL Light!
[0x7f63cd0ce700] | DtManager            | INFO  | 2020-03-23 20:33:04,776 | Dt Worker Thread Started
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | Start detecting OpenCL boards
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | Skipping unqualified OpenCL platform: Clover
[0x7f63c50be700] | GPUManager           | INFO  | 2020-03-23 20:33:04,781 | 0 OpenCL boards detected
[0x7f63c50be700] | GPUManager           | ERROR | 2020-03-23 20:33:04,781 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f63c50be700] | IP                   | ERROR | 2020-03-23 20:33:04,781 | Failed to initialize OpenCL boards
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,785 | Using DNxHR library v2.5.2.68r
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(0), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(2), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(4), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(6), thds(2)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,788 | Kdu ctx(0), bundle(8), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(9), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(10), thds(1)
[0x7f6403a34b80] | IO                   | INFO  | 2020-03-23 20:33:04,789 | Kdu ctx(0), bundle(11), thds(1)
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,297 | --------------------------------------------------------------------------------
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,298 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3822efeb80] | Undefined            | INFO  | 2020-03-23 20:41:27,298 | --------------------------------------------------------------------------------
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,298 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,299 | Updating display GPU information...
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,518 | Detecting Main Display properties
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,529 | Process to detect main display has finished
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,545 | Fallback process to detect main display has finished
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,546 | Setting LsManager.3.NumGPUs = 1
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:27,546 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:27,587 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,587 | 0 RED rocket cards available
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,587 | Decklink model name: '', version: ''
[0x7f3822efeb80] | DVIP                 | INFO  | 2020-03-23 20:41:27,587 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,619 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,619 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,620 | Installed custom font: Open Sans
[0x7f3822efeb80] | Main                 | INFO  | 2020-03-23 20:41:27,637 | Finished loading Application style sheet
[0x7f37fc5b4700] | LeManager            | INFO  | 2020-03-23 20:41:27,765 | 521, 38
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Using default pooled memory manager
[0x7f37fbdb3700] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | BtResourceManager Process Thread Started
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Daemon DPDecoder is started 22104
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,406 | Daemon DPDecoder is started 22105
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22106
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22107
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,407 | Daemon DPDecoder is started 22108
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,408 | Daemon DPDecoder is started 22109
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,408 | Daemon DPDecoder is started 22110
[0x7f3822efeb80] | BtCommon             | INFO  | 2020-03-23 20:41:28,409 | Daemon DPDecoder is started 22111
[0x7f3822efeb80] | SyManager            | INFO  | 2020-03-23 20:41:28,415 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f3822efeb80] | SyManager            | INFO  | 2020-03-23 20:41:28,415 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f37f65a8700] | GsManager            | INFO  | 2020-03-23 20:41:28,416 | Gs Processor Thread ----- (139878333056768)

[0x7f37f7dab700] | SyManager            | ERROR | 2020-03-23 20:41:28,416 | Failed to connect to panel socket
[0x7f3822efeb80] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Using 8 generic IO threads
[0x7f37f7dab700] | SyManager            | ERROR | 2020-03-23 20:41:28,416 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f3822efeb80] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f37f25a3700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Data Handler Thread Started
[0x7f37f05a2700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37efda1700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37eed9f700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ef5a0700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ead97700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ee59e700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37edd9d700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ec59a700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ecd9b700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ebd99700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e9d95700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37eb598700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ea596700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37ed59c700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e9594700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e8d93700] | DtManager            | INFO  | 2020-03-23 20:41:28,416 | Dt Worker Thread Started
[0x7f37e8592700] | DtManager            | INFO  | 2020-03-23 20:41:28,417 | Dt Worker Thread Started
[0x7f37e7d91700] | DtManager            | INFO  | 2020-03-23 20:41:28,417 | Dt Worker Thread Started
[0x7f3822efeb80] | DbCommon2            | INFO  | 2020-03-23 20:41:28,417 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,417 | Let There Be OpenCL Light!
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | Start detecting OpenCL boards
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | Skipping unqualified OpenCL platform: Clover
[0x7f37e3588700] | GPUManager           | INFO  | 2020-03-23 20:41:28,422 | 0 OpenCL boards detected
[0x7f37e3588700] | GPUManager           | ERROR | 2020-03-23 20:41:28,422 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.doesn't
[0x7f37e3588700] | IP                   | ERROR | 2020-03-23 20:41:28,422 | Failed to initialize OpenCL boards
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,426 | Using DNxHR library v2.5.2.68r
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(0), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(2), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(4), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(6), thds(2)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(8), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(9), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(10), thds(1)
[0x7f3822efeb80] | IO                   | INFO  | 2020-03-23 20:41:28,429 | Kdu ctx(0), bundle(11), thds(1)
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,548 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f3965880b80] | Undefined            | INFO  | 2020-03-23 20:42:22,549 | --------------------------------------------------------------------------------
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,549 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,550 | Updating display GPU information...
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,773 | Detecting Main Display properties
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,785 | Process to detect main display has finished
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,803 | Fallback process to detect main display has finished
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,804 | Setting LsManager.3.NumGPUs = 1
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:22,804 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:22,847 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,847 | 0 RED rocket cards available
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,847 | Decklink model name: '', version: ''
[0x7f3965880b80] | DVIP                 | INFO  | 2020-03-23 20:42:22,847 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,878 | Installed custom font: Open Sans
[0x7f3965880b80] | Main                 | INFO  | 2020-03-23 20:42:22,896 | Finished loading Application style sheet
[0x7f393ef36700] | LeManager            | INFO  | 2020-03-23 20:42:23,025 | 521, 38
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | Using default pooled memory manager
[0x7f393e735700] | BtCommon             | INFO  | 2020-03-23 20:42:23,650 | BtResourceManager Process Thread Started
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,651 | Daemon DPDecoder is started 22329
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,651 | Daemon DPDecoder is started 22330
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22331
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22332
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22333
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,652 | Daemon DPDecoder is started 22334
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,653 | Daemon DPDecoder is started 22335
[0x7f3965880b80] | BtCommon             | INFO  | 2020-03-23 20:42:23,653 | Daemon DPDecoder is started 22336
[0x7f3965880b80] | SyManager            | INFO  | 2020-03-23 20:42:23,660 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f3965880b80] | SyManager            | INFO  | 2020-03-23 20:42:23,660 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f393a72d700] | SyManager            | ERROR | 2020-03-23 20:42:23,660 | Failed to connect to panel socket
[0x7f3965880b80] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Using 8 generic IO threads
[0x7f3938f2a700] | GsManager            | INFO  | 2020-03-23 20:42:23,660 | Gs Processor Thread ----- (139883745289984)

[0x7f3934725700] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Dt Data Handler Thread Started
[0x7f393a72d700] | SyManager            | ERROR | 2020-03-23 20:42:23,660 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f3965880b80] | DtManager            | INFO  | 2020-03-23 20:42:23,660 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f3933f24700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3932721700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3933723700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3932f22700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f393171f700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3930f1e700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3931f20700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f393071d700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392ff1c700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392f71b700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392e719700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392df18700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392ef1a700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392d717700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392bf14700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392c715700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392b713700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f392cf16700] | DtManager            | INFO  | 2020-03-23 20:42:23,661 | Dt Worker Thread Started
[0x7f3965880b80] | DbCommon2            | INFO  | 2020-03-23 20:42:23,662 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,662 | Let There Be OpenCL Light!
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | Start detecting OpenCL boards
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | Skipping unqualified OpenCL platform: Clover
[0x7f3926f0a700] | GPUManager           | INFO  | 2020-03-23 20:42:23,667 | 0 OpenCL boards detected
[0x7f3926f0a700] | GPUManager           | ERROR | 2020-03-23 20:42:23,667 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f3926f0a700] | IP                   | ERROR | 2020-03-23 20:42:23,667 | Failed to initialize OpenCL boards
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,670 | Using DNxHR library v2.5.2.68r
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,673 | Kdu ctx(0), bundle(0), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(2), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(4), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(6), thds(2)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(8), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(9), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(10), thds(1)
[0x7f3965880b80] | IO                   | INFO  | 2020-03-23 20:42:23,674 | Kdu ctx(0), bundle(11), thds(1)
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | --------------------------------------------------------------------------------
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7fda7828db80] | Undefined            | INFO  | 2020-03-23 20:43:13,037 | --------------------------------------------------------------------------------
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,037 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,038 | Updating display GPU information...
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,276 | Detecting Main Display properties
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,288 | Process to detect main display has finished
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Fallback process to detect main display has finished
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,301 | Setting LsManager.3.NumGPUs = 1
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:13,301 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:13,345 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,345 | 0 RED rocket cards available
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,345 | Decklink model name: '', version: ''
[0x7fda7828db80] | DVIP                 | INFO  | 2020-03-23 20:43:13,345 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7fda7828db80] | SyManager            | WARN  | 2020-03-23 20:43:13,367 | Failed to load user preferences.
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,377 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,378 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,378 | Installed custom font: Open Sans
[0x7fda7828db80] | Main                 | INFO  | 2020-03-23 20:43:13,396 | Finished loading Application style sheet
[0x7fda7828db80] | SyManager.MediaStorage | INFO  | 2020-03-23 20:43:13,511 | Creating default fsbookmarklist file: /root/.local/share/DaVinciResolve/configs/.fsbookmarklist
[0x7fda51943700] | LeManager            | INFO  | 2020-03-23 20:43:13,520 | 521, 38
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Memory config: reserved=6000M pinned=4000M log=0
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Using default pooled memory manager
[0x7fda51142700] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | BtResourceManager Process Thread Started
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,147 | Daemon DPDecoder is started 22653
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22654
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22655
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22656
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,148 | Daemon DPDecoder is started 22657
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,149 | Daemon DPDecoder is started 22658
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,149 | Daemon DPDecoder is started 22659
[0x7fda7828db80] | BtCommon             | INFO  | 2020-03-23 20:43:14,150 | Daemon DPDecoder is started 22660
[0x7fda7828db80] | SyManager            | INFO  | 2020-03-23 20:43:14,156 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7fda7828db80] | SyManager            | INFO  | 2020-03-23 20:43:14,156 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7fda4d13a700] | SyManager            | ERROR | 2020-03-23 20:43:14,156 | Failed to connect to panel socket
[0x7fda4b937700] | GsManager            | INFO  | 2020-03-23 20:43:14,156 | Gs Processor Thread ----- (140575547553536)

[0x7fda4d13a700] | SyManager            | ERROR | 2020-03-23 20:43:14,156 | DRIVER: open /var/tmp/davinci_socket failed
[0x7fda7828db80] | DtManager            | INFO  | 2020-03-23 20:43:14,156 | Using 8 generic IO threads
[0x7fda49132700] | DtManager            | INFO  | 2020-03-23 20:43:14,156 | Dt Data Handler Thread Started
[0x7fda7828db80] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7fda46931700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda46130700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4512e700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4592f700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda40925700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4492d700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4392b700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda4312a700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda42128700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda42929700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda41927700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda41126700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda7828db80] | DbCommon2            | INFO  | 2020-03-23 20:43:14,158 | Creating default dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7fda40124700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3f923700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3f122700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3e921700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda3e120700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,158 | Let There Be OpenCL Light!
[0x7fda4412c700] | DtManager            | INFO  | 2020-03-23 20:43:14,157 | Dt Worker Thread Started
[0x7fda7828db80] | DbCommon2            | INFO  | 2020-03-23 20:43:14,158 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | Start detecting OpenCL boards
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | Skipping unqualified OpenCL platform: Clover
[0x7fda39917700] | GPUManager           | INFO  | 2020-03-23 20:43:14,162 | 0 OpenCL boards detected
[0x7fda39917700] | GPUManager           | ERROR | 2020-03-23 20:43:14,162 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7fda39917700] | IP                   | ERROR | 2020-03-23 20:43:14,162 | Failed to initialize OpenCL boards
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,166 | Using DNxHR library v2.5.2.68r
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(0), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(2), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(4), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(6), thds(2)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(8), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(9), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,169 | Kdu ctx(0), bundle(10), thds(1)
[0x7fda7828db80] | IO                   | INFO  | 2020-03-23 20:43:14,170 | Kdu ctx(0), bundle(11), thds(1)
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,352 | --------------------------------------------------------------------------------
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,353 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f0f9647bb80] | Undefined            | INFO  | 2020-03-23 20:57:56,353 | --------------------------------------------------------------------------------
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,353 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,354 | Updating display GPU information...
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,574 | Detecting Main Display properties
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,588 | Process to detect main display has finished
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,602 | Fallback process to detect main display has finished
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,603 | Setting LsManager.3.NumGPUs = 1
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:56,603 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:56,645 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,645 | 0 RED rocket cards available
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,645 | Decklink model name: '', version: ''
[0x7f0f9647bb80] | DVIP                 | INFO  | 2020-03-23 20:57:56,645 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,675 | Installed custom font: Open Sans
[0x7f0f9647bb80] | Main                 | INFO  | 2020-03-23 20:57:56,692 | Finished loading Application style sheet
[0x7f0f6fb31700] | LeManager            | INFO  | 2020-03-23 20:57:56,830 | 521, 38
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,456 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Using default pooled memory manager
[0x7f0f6f330700] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | BtResourceManager Process Thread Started
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Daemon DPDecoder is started 24656
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,457 | Daemon DPDecoder is started 24657
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24658
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24659
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,458 | Daemon DPDecoder is started 24660
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24661
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24662
[0x7f0f9647bb80] | BtCommon             | INFO  | 2020-03-23 20:57:57,459 | Daemon DPDecoder is started 24663
[0x7f0f9647bb80] | SyManager            | INFO  | 2020-03-23 20:57:57,466 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f0f9647bb80] | SyManager            | INFO  | 2020-03-23 20:57:57,466 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f0f6b328700] | SyManager            | ERROR | 2020-03-23 20:57:57,466 | Failed to connect to panel socket
[0x7f0f69b25700] | GsManager            | INFO  | 2020-03-23 20:57:57,466 | Gs Processor Thread ----- (139704174532352)

[0x7f0f6b328700] | SyManager            | ERROR | 2020-03-23 20:57:57,466 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f0f9647bb80] | DtManager            | INFO  | 2020-03-23 20:57:57,466 | Using 8 generic IO threads
[0x7f0f66f20700] | DtManager            | INFO  | 2020-03-23 20:57:57,466 | Dt Data Handler Thread Started
[0x7f0f9647bb80] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f0f64b1f700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6431e700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f63b1d700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f61b19700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f62b1b700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5cb0f700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f61318700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f60b17700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f60316700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5fb15700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6331c700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5f314700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5e312700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5eb13700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5db11700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5d310700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f6231a700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f5c30e700] | DtManager            | INFO  | 2020-03-23 20:57:57,467 | Dt Worker Thread Started
[0x7f0f9647bb80] | DbCommon2            | INFO  | 2020-03-23 20:57:57,468 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,468 | Let There Be OpenCL Light!
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | Start detecting OpenCL boards
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | Skipping unqualified OpenCL platform: Clover
[0x7f0f57b05700] | GPUManager           | INFO  | 2020-03-23 20:57:57,473 | 0 OpenCL boards detected
[0x7f0f57b05700] | GPUManager           | ERROR | 2020-03-23 20:57:57,473 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f0f57b05700] | IP                   | ERROR | 2020-03-23 20:57:57,473 | Failed to initialize OpenCL boards
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,476 | Using DNxHR library v2.5.2.68r
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(0), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(2), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(4), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(6), thds(2)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(8), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(9), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(10), thds(1)
[0x7f0f9647bb80] | IO                   | INFO  | 2020-03-23 20:57:57,479 | Kdu ctx(0), bundle(11), thds(1)
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | --------------------------------------------------------------------------------
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | Loaded log config from /root/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f1ab4487b80] | Undefined            | INFO  | 2020-03-23 21:02:34,822 | --------------------------------------------------------------------------------
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:34,823 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:34,823 | Updating display GPU information...
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,042 | Detecting Main Display properties
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,052 | Process to detect main display has finished
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,064 | Fallback process to detect main display has finished
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | 0 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | Not GLmap capable. GPUs: 0 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,065 | Setting LsManager.3.NumGPUs = 1
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,065 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,105 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,105 | 0 RED rocket cards available
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,105 | Decklink model name: '', version: ''
[0x7f1ab4487b80] | DVIP                 | INFO  | 2020-03-23 21:02:35,105 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,139 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,140 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,140 | Installed custom font: Open Sans
[0x7f1ab4487b80] | Main                 | INFO  | 2020-03-23 21:02:35,159 | Finished loading Application style sheet
[0x7f1a8db3d700] | LeManager            | INFO  | 2020-03-23 21:02:35,290 | 521, 38
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | Using default pooled memory manager
[0x7f1a8d33c700] | BtCommon             | INFO  | 2020-03-23 21:02:35,919 | BtResourceManager Process Thread Started
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,920 | Daemon DPDecoder is started 25082
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,920 | Daemon DPDecoder is started 25083
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25084
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25085
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25086
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,921 | Daemon DPDecoder is started 25087
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,922 | Daemon DPDecoder is started 25088
[0x7f1ab4487b80] | BtCommon             | INFO  | 2020-03-23 21:02:35,922 | Daemon DPDecoder is started 25089
[0x7f1ab4487b80] | SyManager            | INFO  | 2020-03-23 21:02:35,929 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f1ab4487b80] | SyManager            | INFO  | 2020-03-23 21:02:35,929 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f1a89334700] | SyManager            | ERROR | 2020-03-23 21:02:35,929 | Failed to connect to panel socket
[0x7f1a87b31700] | GsManager            | INFO  | 2020-03-23 21:02:35,929 | Gs Processor Thread ----- (139751922538240)

[0x7f1a89334700] | SyManager            | ERROR | 2020-03-23 21:02:35,929 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f1ab4487b80] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Using 8 generic IO threads
[0x7f1a8432c700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Data Handler Thread Started
[0x7f1ab4487b80] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f1a83b2b700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a8332a700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a82b29700] | DtManager            | INFO  | 2020-03-23 21:02:35,929 | Dt Worker Thread Started
[0x7f1a82328700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a81326700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a81b27700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7fb23700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a80b25700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a80324700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7eb21700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7f322700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7e320700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7d31e700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7db1f700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7c31c700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7cb1d700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7b31a700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1a7bb1b700] | DtManager            | INFO  | 2020-03-23 21:02:35,930 | Dt Worker Thread Started
[0x7f1ab4487b80] | DbCommon2            | INFO  | 2020-03-23 21:02:35,930 | Loading dblist file: /root/.local/share/DaVinciResolve/configs/.dblist
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,930 | Let There Be OpenCL Light!
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | Start detecting OpenCL boards
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | Skipping unqualified OpenCL platform: Clover
[0x7f1a76b11700] | GPUManager           | INFO  | 2020-03-23 21:02:35,935 | 0 OpenCL boards detected
[0x7f1a76b11700] | GPUManager           | ERROR | 2020-03-23 21:02:35,935 | CRITICAL_PREF: DaVinci Resolve could not find any OpenCL capable GPUs. Would you like to review and update your DaVinci Resolve Hardware Configuration? ||Please ensure that appropriate GPU drivers are installed and your DaVinci Resolve hardware is configured appropriately.
[0x7f1a76b11700] | IP                   | ERROR | 2020-03-23 21:02:35,935 | Failed to initialize OpenCL boards
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,938 | Using DNxHR library v2.5.2.68r
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(0), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(2), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(4), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(6), thds(2)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(8), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(9), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(10), thds(1)
[0x7f1ab4487b80] | IO                   | INFO  | 2020-03-23 21:02:35,942 | Kdu ctx(0), bundle(11), thds(1)
[0x7f13b40c8b80] | Undefined            | INFO  | 2020-03-23 21:38:11,310 | --------------------------------------------------------------------------------
[0x7f13b40c8b80] | Undefined            | INFO  | 2020-03-23 21:38:11,310 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f13b40c8b80] | Undefined            | INFO  | 2020-03-23 21:38:11,311 | --------------------------------------------------------------------------------
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,311 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,312 | Updating display GPU information...
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,583 | Detecting Main Display properties
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,596 | Process to detect main display has finished
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,609 | Fallback process to detect main display has finished
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,609 | GPU Name = 'Unknown AMD GPU', Main display = 0
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,610 | 1 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,610 | Not GLmap capable. GPUs: 1 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,610 | Setting LsManager.3.NumGPUs = 1
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:11,610 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:11,652 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,652 | 0 RED rocket cards available
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,652 | Decklink model name: '', version: ''
[0x7f13b40c8b80] | DVIP                 | INFO  | 2020-03-23 21:38:11,652 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,689 | Installed custom font: Open Sans
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,689 | Installed custom font: Open Sans
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,689 | Installed custom font: Open Sans
[0x7f13b40c8b80] | Main                 | INFO  | 2020-03-23 21:38:11,708 | Finished loading Application style sheet
[0x7f1379111700] | LeManager            | INFO  | 2020-03-23 21:38:11,831 | 521, 38
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | Using default pooled memory manager
[0x7f1378910700] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | BtResourceManager Process Thread Started
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,459 | Daemon DPDecoder is started 31015
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,460 | Daemon DPDecoder is started 31016
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,460 | Daemon DPDecoder is started 31017
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,460 | Daemon DPDecoder is started 31018
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,461 | Daemon DPDecoder is started 31019
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,461 | Daemon DPDecoder is started 31020
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,461 | Daemon DPDecoder is started 31021
[0x7f13b40c8b80] | BtCommon             | INFO  | 2020-03-23 21:38:12,462 | Daemon DPDecoder is started 31022
[0x7f13b40c8b80] | SyManager            | INFO  | 2020-03-23 21:38:12,468 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f13b40c8b80] | SyManager            | INFO  | 2020-03-23 21:38:12,468 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f1373105700] | GsManager            | INFO  | 2020-03-23 21:38:12,469 | Gs Processor Thread ----- (139721511556864)

[0x7f1374908700] | SyManager            | ERROR | 2020-03-23 21:38:12,469 | Failed to connect to panel socket
[0x7f13b40c8b80] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Using 8 generic IO threads
[0x7f1374908700] | SyManager            | ERROR | 2020-03-23 21:38:12,469 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f1370900700] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Dt Data Handler Thread Started
[0x7f13b40c8b80] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f136f8fe700] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Dt Worker Thread Started
[0x7f136e0fb700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136b0f5700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136d0f9700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136e8fc700] | DtManager            | INFO  | 2020-03-23 21:38:12,469 | Dt Worker Thread Started
[0x7f13700ff700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136c0f7700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13698f2700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136c8f8700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136f0fd700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136b8f6700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136a8f4700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136a0f3700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13690f1700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13688f0700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13678ee700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13680ef700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f136d8fa700] | DtManager            | INFO  | 2020-03-23 21:38:12,470 | Dt Worker Thread Started
[0x7f13b40c8b80] | DbCommon2            | INFO  | 2020-03-23 21:38:12,470 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,470 | Let There Be OpenCL Light!
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Start detecting OpenCL boards
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Skipping unqualified OpenCL platform: Clover
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Found qualified OpenCL board 0: platform - AMD Accelerated Parallel Processing, vendor - Advanced Micro Devices, Inc., id - 0x7f138f9e1f10, device name - Unknown AMD GPU id - 0x7f13ad666b10, global memory size (MB) - 8176, local memory size (KB) - 64, max global memory alloc size (MB) - 4048
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | 1 OpenCL boards detected
[0x7f13630e5700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Board manager thread id 0x5c6f8700 policy 0 priority 0
[0x7f135c6f8700] | GPUManager           | INFO  | 2020-03-23 21:38:12,476 | Initializing GPU board 0 with context thread 0
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,479 | Using DNxHR library v2.5.2.68r
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(0), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(2), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(4), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,482 | Kdu ctx(0), bundle(6), thds(2)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(8), thds(1)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(9), thds(1)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(10), thds(1)
[0x7f13b40c8b80] | IO                   | INFO  | 2020-03-23 21:38:12,483 | Kdu ctx(0), bundle(11), thds(1)
[0x7fa4cd9ccb80] | Undefined            | INFO  | 2020-03-23 22:12:48,115 | --------------------------------------------------------------------------------
[0x7fa4cd9ccb80] | Undefined            | INFO  | 2020-03-23 22:12:48,115 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7fa4cd9ccb80] | Undefined            | INFO  | 2020-03-23 22:12:48,115 | --------------------------------------------------------------------------------
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,115 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,116 | Updating display GPU information...
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,394 | Detecting Main Display properties
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,408 | Process to detect main display has finished
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,423 | Fallback process to detect main display has finished
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,423 | GPU Name = 'Unknown AMD GPU', Main display = 0
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,423 | 1 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,423 | Not GLmap capable. GPUs: 1 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,424 | Setting LsManager.3.NumGPUs = 1
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:48,424 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:48,465 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,465 | 0 RED rocket cards available
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,465 | Decklink model name: '', version: ''
[0x7fa4cd9ccb80] | DVIP                 | INFO  | 2020-03-23 22:12:48,465 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,497 | Installed custom font: Open Sans
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,498 | Installed custom font: Open Sans
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,498 | Installed custom font: Open Sans
[0x7fa4cd9ccb80] | Main                 | INFO  | 2020-03-23 22:12:48,517 | Finished loading Application style sheet
[0x7fa492a15700] | LeManager            | INFO  | 2020-03-23 22:12:48,634 | 521, 38
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,263 | Memory config: reserved=6000M pinned=4000M log=0
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,263 | Using default pooled memory manager
[0x7fa492214700] | BtCommon             | INFO  | 2020-03-23 22:12:49,264 | BtResourceManager Process Thread Started
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,264 | Daemon DPDecoder is started 42659
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,264 | Daemon DPDecoder is started 42660
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,264 | Daemon DPDecoder is started 42661
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,265 | Daemon DPDecoder is started 42662
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,265 | Daemon DPDecoder is started 42663
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,265 | Daemon DPDecoder is started 42664
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,266 | Daemon DPDecoder is started 42665
[0x7fa4cd9ccb80] | BtCommon             | INFO  | 2020-03-23 22:12:49,266 | Daemon DPDecoder is started 42666
[0x7fa4cd9ccb80] | SyManager            | INFO  | 2020-03-23 22:12:49,273 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7fa4cd9ccb80] | SyManager            | INFO  | 2020-03-23 22:12:49,273 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7fa48e20c700] | SyManager            | ERROR | 2020-03-23 22:12:49,273 | Failed to connect to panel socket
[0x7fa48e20c700] | SyManager            | ERROR | 2020-03-23 22:12:49,273 | DRIVER: open /var/tmp/davinci_socket failed
[0x7fa48ca09700] | GsManager            | INFO  | 2020-03-23 22:12:49,273 | Gs Processor Thread ----- (140344710698752)

[0x7fa4cd9ccb80] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Using 8 generic IO threads
[0x7fa48a204700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Data Handler Thread Started
[0x7fa4cd9ccb80] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7fa489a03700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4879ff700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa489202700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4851fa700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4829f5700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4871fe700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4869fd700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4861fc700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4859fb700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa488a01700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4849f9700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4841f8700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4839f7700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4831f6700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa488200700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4821f4700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4819f3700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4811f2700] | DtManager            | INFO  | 2020-03-23 22:12:49,274 | Dt Worker Thread Started
[0x7fa4cd9ccb80] | DbCommon2            | INFO  | 2020-03-23 22:12:49,275 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7fa47c9e9700] | GPUManager           | INFO  | 2020-03-23 22:12:49,275 | Let There Be OpenCL Light!
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,284 | Using DNxHR library v2.5.2.68r
[0x7fa47c9e9700] | GPUManager           | INFO  | 2020-03-23 22:12:49,285 | Start detecting OpenCL boards
[0x7fa47c9e9700] | GPUManager           | INFO  | 2020-03-23 22:12:49,285 | Skipping unqualified OpenCL platform: Clover
[0x7fa47c9e9700] | GPUManager           | INFO  | 2020-03-23 22:12:49,285 | Found qualified OpenCL board 0: platform - AMD Accelerated Parallel Processing, vendor - Advanced Micro Devices, Inc., id - 0x7fa4a92e5f10, device name - Unknown AMD GPU id - 0x7fa4c6f6ab10, global memory size (MB) - 8176, local memory size (KB) - 64, max global memory alloc size (MB) - 4048
[0x7fa47c9e9700] | GPUManager           | INFO  | 2020-03-23 22:12:49,285 | 1 OpenCL boards detected
[0x7fa47c9e9700] | GPUManager           | INFO  | 2020-03-23 22:12:49,285 | Board manager thread id 0x73876700 policy 0 priority 0
[0x7fa473876700] | GPUManager           | INFO  | 2020-03-23 22:12:49,285 | Initializing GPU board 0 with context thread 0
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(0), thds(2)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(2), thds(2)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(4), thds(2)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(6), thds(2)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(8), thds(1)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(9), thds(1)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(10), thds(1)
[0x7fa4cd9ccb80] | IO                   | INFO  | 2020-03-23 22:12:49,287 | Kdu ctx(0), bundle(11), thds(1)
[0x7f726a58db80] | Undefined            | INFO  | 2020-03-23 22:36:10,798 | --------------------------------------------------------------------------------
[0x7f726a58db80] | Undefined            | INFO  | 2020-03-23 22:36:10,798 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7f726a58db80] | Undefined            | INFO  | 2020-03-23 22:36:10,798 | --------------------------------------------------------------------------------
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:10,799 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:10,799 | Updating display GPU information...
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,063 | Detecting Main Display properties
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,077 | Process to detect main display has finished
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,090 | Fallback process to detect main display has finished
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,090 | GPU Name = 'Unknown AMD GPU', Main display = 0
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,090 | 1 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,090 | Not GLmap capable. GPUs: 1 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,090 | Setting LsManager.3.NumGPUs = 1
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:11,090 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:11,132 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,132 | 0 RED rocket cards available
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,133 | Decklink model name: '', version: ''
[0x7f726a58db80] | DVIP                 | INFO  | 2020-03-23 22:36:11,133 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,165 | Installed custom font: Open Sans
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,165 | Installed custom font: Open Sans
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,165 | Installed custom font: Open Sans
[0x7f726a58db80] | Main                 | INFO  | 2020-03-23 22:36:11,184 | Finished loading Application style sheet
[0x7f72305d6700] | LeManager            | INFO  | 2020-03-23 22:36:11,325 | 521, 38
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,980 | Memory config: reserved=6000M pinned=4000M log=0
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,980 | Using default pooled memory manager
[0x7f722edd5700] | BtCommon             | INFO  | 2020-03-23 22:36:11,980 | BtResourceManager Process Thread Started
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,980 | Daemon DPDecoder is started 47376
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,980 | Daemon DPDecoder is started 47377
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,981 | Daemon DPDecoder is started 47378
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,981 | Daemon DPDecoder is started 47379
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,982 | Daemon DPDecoder is started 47380
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,982 | Daemon DPDecoder is started 47381
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,982 | Daemon DPDecoder is started 47382
[0x7f726a58db80] | BtCommon             | INFO  | 2020-03-23 22:36:11,983 | Daemon DPDecoder is started 47383
[0x7f726a58db80] | SyManager            | INFO  | 2020-03-23 22:36:11,989 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7f726a58db80] | SyManager            | INFO  | 2020-03-23 22:36:11,989 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7f722adcd700] | SyManager            | ERROR | 2020-03-23 22:36:11,990 | Failed to connect to panel socket
[0x7f72295ca700] | GsManager            | INFO  | 2020-03-23 22:36:11,990 | Gs Processor Thread ----- (140128296937216)

[0x7f726a58db80] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Using 8 generic IO threads
[0x7f722adcd700] | SyManager            | ERROR | 2020-03-23 22:36:11,990 | DRIVER: open /var/tmp/davinci_socket failed
[0x7f726a58db80] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7f7226dc5700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Data Handler Thread Started
[0x7f72265c4700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f7224dc1700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f72255c2700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f7225dc3700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f7223dbf700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f72245c0700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f72235be700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f7222dbd700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f7221dbb700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f72225bc700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f72215ba700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f7220db9700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f72205b8700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f721fdb7700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f721f5b6700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f721edb5700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f721ddb3700] | DtManager            | INFO  | 2020-03-23 22:36:11,990 | Dt Worker Thread Started
[0x7f721e5b4700] | DtManager            | INFO  | 2020-03-23 22:36:11,991 | Dt Worker Thread Started
[0x7f726a58db80] | DbCommon2            | INFO  | 2020-03-23 22:36:11,991 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7f72195aa700] | GPUManager           | INFO  | 2020-03-23 22:36:11,991 | Let There Be OpenCL Light!
[0x7f72195aa700] | GPUManager           | INFO  | 2020-03-23 22:36:11,995 | Start detecting OpenCL boards
[0x7f72195aa700] | GPUManager           | INFO  | 2020-03-23 22:36:11,995 | Skipping unqualified OpenCL platform: Clover
[0x7f72195aa700] | GPUManager           | INFO  | 2020-03-23 22:36:11,996 | Found qualified OpenCL board 0: platform - AMD Accelerated Parallel Processing, vendor - Advanced Micro Devices, Inc., id - 0x7f7245ea6f10, device name - Unknown AMD GPU id - 0x7f7263b2eb10, global memory size (MB) - 8176, local memory size (KB) - 64, max global memory alloc size (MB) - 4048
[0x7f72195aa700] | GPUManager           | INFO  | 2020-03-23 22:36:11,996 | 1 OpenCL boards detected
[0x7f72195aa700] | GPUManager           | INFO  | 2020-03-23 22:36:11,996 | Board manager thread id 0x12bbd700 policy 0 priority 0
[0x7f7212bbd700] | GPUManager           | INFO  | 2020-03-23 22:36:11,996 | Initializing GPU board 0 with context thread 0
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:11,999 | Using DNxHR library v2.5.2.68r
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(0), thds(2)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(2), thds(2)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(4), thds(2)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(6), thds(2)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(8), thds(1)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(9), thds(1)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(10), thds(1)
[0x7f726a58db80] | IO                   | INFO  | 2020-03-23 22:36:12,003 | Kdu ctx(0), bundle(11), thds(1)
[0x7ff8f8169b80] | Undefined            | INFO  | 2020-03-24 09:27:20,996 | --------------------------------------------------------------------------------
[0x7ff8f8169b80] | Undefined            | INFO  | 2020-03-24 09:27:20,996 | Loaded log config from /home/joseph/.local/share/DaVinciResolve/configs/log-conf.xml
[0x7ff8f8169b80] | Undefined            | INFO  | 2020-03-24 09:27:20,996 | --------------------------------------------------------------------------------
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:20,998 | Running DaVinci Resolve v16.2.0.055 (Linux/Clang)
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:20,999 | Updating display GPU information...
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,221 | Detecting Main Display properties
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,232 | Process to detect main display has finished
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,245 | Fallback process to detect main display has finished
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,246 | GPU Name = 'Unknown AMD GPU', Main display = 0
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,246 | 1 GPUs (excluding display GPU) found. Using OpenCL for processing.
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,246 | Not GLmap capable. GPUs: 1 discrete, 0 integrated, 0 external. Auto mapping, OpenCL processing, main display not on external GPU.
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,246 | Setting LsManager.3.NumGPUs = 1
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:21,246 | RED InitializeSdk with library path at /opt/resolve/libs
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:21,303 | R3DAPI 7.2.1-42A55 (20200211 L64S) R3DSDK 7.2.1-42A55 (20200211 L64D C3B1) RED CUDA 7.2.1-48827 (20200211) RED OPENCL 7.2.1-48827 (20200211) [/opt/resolve/libs/] init is successful
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,303 | 0 RED rocket cards available
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,304 | Decklink model name: '', version: ''
[0x7ff8f8169b80] | DVIP                 | INFO  | 2020-03-24 09:27:21,304 | DVIP Version : 16.2.0, Revision r005875-c1741ee2, Branch release/16.2 (Release)
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,364 | Installed custom font: Open Sans
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,364 | Installed custom font: Open Sans
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,364 | Installed custom font: Open Sans
[0x7ff8f8169b80] | Main                 | INFO  | 2020-03-24 09:27:21,384 | Finished loading Application style sheet
[0x7ff8ca0af700] | LeManager            | INFO  | 2020-03-24 09:27:21,624 | 521, 38
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,342 | Memory config: reserved=6000M pinned=4000M log=0
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,342 | Using default pooled memory manager
[0x7ff8c98ae700] | BtCommon             | INFO  | 2020-03-24 09:27:22,342 | BtResourceManager Process Thread Started
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,343 | Daemon DPDecoder is started 2613
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,343 | Daemon DPDecoder is started 2614
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,343 | Daemon DPDecoder is started 2615
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,344 | Daemon DPDecoder is started 2616
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,344 | Daemon DPDecoder is started 2617
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,344 | Daemon DPDecoder is started 2618
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,345 | Daemon DPDecoder is started 2619
[0x7ff8f8169b80] | BtCommon             | INFO  | 2020-03-24 09:27:22,345 | Daemon DPDecoder is started 2620
[0x7ff8f8169b80] | SyManager            | INFO  | 2020-03-24 09:27:22,352 | Total: 20, NumDtThreads: 8, NumComms: 0, NumSites: 1

[0x7ff8f8169b80] | SyManager            | INFO  | 2020-03-24 09:27:22,352 | Lookaheads -> playback = 20, record = 20, stop = 2

[0x7ff8c58a6700] | SyManager            | ERROR | 2020-03-24 09:27:22,352 | Failed to connect to panel socket
[0x7ff8c28a3700] | GsManager            | INFO  | 2020-03-24 09:27:22,352 | Gs Processor Thread ----- (140706392454912)

[0x7ff8c58a6700] | SyManager            | ERROR | 2020-03-24 09:27:22,352 | DRIVER: open /var/tmp/davinci_socket failed
[0x7ff8f8169b80] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Using 8 generic IO threads
[0x7ff8bf89e700] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Dt Data Handler Thread Started
[0x7ff8f8169b80] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Total of 16 IO threads (including 8 generic and 8 Red decode threads)
[0x7ff8bf09d700] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Dt Worker Thread Started
[0x7ff8be89c700] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Dt Worker Thread Started
[0x7ff8be09b700] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Dt Worker Thread Started
[0x7ff8bc898700] | DtManager            | INFO  | 2020-03-24 09:27:22,352 | Dt Worker Thread Started
[0x7ff8bd89a700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8bd099700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8bc097700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8bb896700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8bb095700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8ba894700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8ba093700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b9892700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b9091700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b8890700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b808f700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b788e700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b708d700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8b688c700] | DtManager            | INFO  | 2020-03-24 09:27:22,353 | Dt Worker Thread Started
[0x7ff8f8169b80] | DbCommon2            | INFO  | 2020-03-24 09:27:22,353 | Loading dblist file: /home/joseph/.local/share/DaVinciResolve/configs/.dblist
[0x7ff8b2083700] | GPUManager           | INFO  | 2020-03-24 09:27:22,353 | Let There Be OpenCL Light!
[0x7ff8b2083700] | GPUManager           | INFO  | 2020-03-24 09:27:22,359 | Start detecting OpenCL boards
[0x7ff8b2083700] | GPUManager           | INFO  | 2020-03-24 09:27:22,359 | Found qualified OpenCL board 0: platform - AMD Accelerated Parallel Processing, vendor - Advanced Micro Devices, Inc., id - 0x7ff8ea80bf10, device name - Unknown AMD GPU id - 0x7ff8f180c110, global memory size (MB) - 8176, local memory size (KB) - 64, max global memory alloc size (MB) - 4048
[0x7ff8b2083700] | GPUManager           | INFO  | 2020-03-24 09:27:22,359 | 1 OpenCL boards detected
[0x7ff8b2083700] | GPUManager           | INFO  | 2020-03-24 09:27:22,360 | Board manager thread id 0xb0efb700 policy 0 priority 0
[0x7ff8b0efb700] | GPUManager           | INFO  | 2020-03-24 09:27:22,360 | Initializing GPU board 0 with context thread 0
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,378 | Using DNxHR library v2.5.2.68r
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(0), thds(2)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(2), thds(2)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(4), thds(2)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(6), thds(2)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(8), thds(1)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(9), thds(1)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(10), thds(1)
[0x7ff8f8169b80] | IO                   | INFO  | 2020-03-24 09:27:22,383 | Kdu ctx(0), bundle(11), thds(1)
[0x7ff8b0efb700] | GPUManager           | INFO  | 2020-03-24 09:27:22,771 | Setting channel cache size on GPU board 0 to 4
[0x7ff8b0efb700] | GPUManager           | INFO  | 2020-03-24 09:27:22,771 | Board manager 0 on thread 0 initialization done on GPU Unknown AMD GPU

Offline

#4 2020-06-21 20:37:27

ppenguin
Member
Registered: 2018-03-20
Posts: 8

Re: How to enable AMDGPU-PRO only for one application

@Candroidgenie

Did you find a solution?

I'm now apparently stuck at exactly the same point...

[0x7fd5451ef700] | GPUManager           | INFO  | 2020-06-21 22:34:02,109 | Let There Be OpenCL Light!
[0x7fd5451ef700] | GPUManager           | INFO  | 2020-06-21 22:34:02,113 | Start detecting OpenCL boards
[0x7fd5451ef700] | GPUManager           | INFO  | 2020-06-21 22:34:02,114 | Found qualified OpenCL board 0: platform - AMD Accelerated Parallel Processing, vendor - Advanced Micro Devices, Inc., id - 0x7fd592179f30, device name - AMD Radeon RX 5700 XT id - 0x7fd593168110, global memory size (MB) - 8176, local memory size (KB) - 64, max global memory alloc size (MB) - 6732
[0x7fd5451ef700] | GPUManager           | INFO  | 2020-06-21 22:34:02,114 | 1 OpenCL boards detected
[0x7fd5451ef700] | GPUManager           | INFO  | 2020-06-21 22:34:02,114 | Board manager thread id 0x44067700 policy 0 priority 0
[0x7fd544067700] | GPUManager           | INFO  | 2020-06-21 22:34:02,114 | Initializing GPU board 0 with context thread 0
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,123 | Using DNxHR library v2.5.2.68r
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(0), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(3), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(6), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(9), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(12), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(15), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(18), thds(3)
[0x7fd599b19600] | IO                   | INFO  | 2020-06-21 22:34:02,126 | Kdu ctx(0), bundle(21), thds(3)
[0x7fd544067700] | GPUManager           | INFO  | 2020-06-21 22:34:02,342 | Setting channel cache size on GPU board 0 to 4
[0x7fd544067700] | GPUManager           | INFO  | 2020-06-21 22:34:02,342 | Board manager 0 on thread 0 initialization done on GPU AMD Radeon RX 5700 XT

Cheers,

Last edited by ppenguin (2020-06-21 20:40:26)

Offline

Board footer

Powered by FluxBB