Re: [Mesa-dev] [PATCH v3 06/17] panfrost: Start tracking inter-batch dependencies

2019-09-20 Thread Alyssa Rosenzweig
R-b. nice work! On Wed, Sep 18, 2019 at 03:24:28PM +0200, Boris Brezillon wrote: > The idea is to track which BO are being accessed and the type of access > to determine when a dependency exists. Thanks to that we can build a > dependency graph that will allow us to flush batches in the correct >

[Mesa-dev] [PATCH v3 06/17] panfrost: Start tracking inter-batch dependencies

2019-09-18 Thread Boris Brezillon
The idea is to track which BO are being accessed and the type of access to determine when a dependency exists. Thanks to that we can build a dependency graph that will allow us to flush batches in the correct order. Signed-off-by: Boris Brezillon --- Changes in v3: * Fix coding style issues * Do