Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateTacFilterPass (0.31 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateFoldConstantsToSubgraphPass(
        bool fold_all_constants);
    
    // Create an instance of TacFilterPass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTacFilterPass(
        ::third_party::tensorflow::compiler::mlir::lite::experimental::tac::
            TacFilters* tac_filters);
    
    }  // namespace tac
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

        PrintTacFilterResult(module.getLoc(), tac_filter.value(),
                             tac_filter.index(), filtered_ops);
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTacFilterPass(
        TacFilters* tac_filters) {
      return std::make_unique<TacFilterPass>(tac_filters);
    }
    
    static PassRegistration<TacFilterPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top