optimizing dnn computation with relaxed graph
play

Optimizing DNN Computation with Relaxed Graph Substitutions Tim - PowerPoint PPT Presentation

Optimizing DNN Computation with Relaxed Graph Substitutions Tim Lazarus 26 November, 2019 Graph Substitutions We can optimise DNNs if we replace subgraphs with equivalent ones that improve overall performance For a particular input I ,


  1. Optimizing DNN Computation with Relaxed Graph Substitutions Tim Lazarus 26 November, 2019

  2. Graph Substitutions We can optimise DNNs if we replace subgraphs with equivalent ones that improve overall performance For a particular input I , computation graph G will produce output O , or written as O = G ( I ) We then say that two graphs, G and G 0 are equivalent if they produce the same output for every input. ( ∀ I : G ( I ) = G 0 ( I ))

  3. Relaxed Graph Substitutions This is a local form of optimisation and may not result in optimal results. Previous work with graph substitutions employed a greedy approach . As with most modern optimising compilers, sometimes further optimisations can be gained if we decrease performance in intermediate steps.

  4. Example Figure: Example relaxed graph substitution optimisation

  5. Defining substitutions Essentially a mapping between a source graph and target graph . Source graph defines constraints on a subgraph. Target graph uses those constraints to create the substituted subgraph. We need the substitution to be valid

  6. Example Figure: Example substitution definition

  7. Cost Model We need to estimate the cost of each substitution. Cost model incorporates many metrics. Can also accurately estimate dynamic execution too

  8. Searching the Space Use a priority queue to search most optimal graph first and backtrack if necessary. The space can be huge if we consider all possible substitutions. Use a parameter α that determines the trade-o ff between search time and space explored. (See next slide)

  9. Search Algorithm Algorithm 1: A Backtracking Search Algorithm Input: An initial computation graph G 0 , a cost model Cost( · ) , a list of valid graph substitutions { S 1 , ..., S m } , and a hyper parameter α Output: An optimised computation graph. // Q is a priority queue of graphs sorted by Cost( · ) Q = {G 0 } while Q 6 = {} do G = Q . dequeue() for i = 1 to m do G 0 = S i ( G ) if Cost( G 0 ) < Cost( G opt ) then G opt = G 0 end if Cost( G 0 ) < α ⇥ Cost( G opt ) then Q . enqueue( G 0 ) end end end return G opt

  10. Graph Splitting Split the graph into smaller subgraphs so the search is more manageable. For each node v , we define the Cap( v ) as the number of substitutions that map to an in or out edge of v . We can then minimise the number of substitutions that span across a split as the problem maps to a minimum vertex cut problem. Can perform a local search around splits to find further potential optimisations.

  11. Evaluation Figure: Compared with TensorFlow, TensorRT and TensorFlow XLA

  12. Evaluation Figure: Comparison of di ff erent cost metrics

  13. Evaluation Figure: Evaluation of varying values of α

  14. Criticism Strengths I Well defined problem I System is open-source I Good testing of system I Can be used on top of other optimisations

  15. Criticism Strengths Weaknesses I Well defined problem I Paper lacked implementation detail I System is open-source I Poor analysis of results I Good testing of system I Can be used on top of other optimisations

  16. Extensions Can be used with existing optimisations like TVM or FlexFlow (as we saw last week) There’s a new paper in town...

  17. TASO Extends this paper by automatically generating possible graph substitutions. For a given set of operators, it enumerates all possible subgraphs up to a fixed size. It then finds equivalent subgraphs through formal verification.

  18. Questions?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend