The technical process of removing unused nodes or redundant operations from a computational graph is known as Graph Optimization or Graph Pruning. A computational graph is a directed structure where nodes represent operations like addition or convolution and edges represent the data tensors flowing between them. To maximize throughput on hardware accelerators, the compiler or optimization framework performs a series of static analysis passes. First, it identifies dead code by tracing the graph from the output n....
Log in to view the answer