Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreatePickSubgraphsPass (0.3 sec)

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

    // Create an instance of ComputeCostPass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateComputeCostPass();
    
    // Create an instance of PickSubgraphsPass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePickSubgraphsPass();
    
    // Create an instance of DeviceTransformGPUPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDeviceTransformGPUPass();
    
    // Create an instance of GetOpCostPass.
    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/tac_module.cc

        pass_manager->addPass(
            mlir::TFL::CreateOptimizePass(/*enable_canonicalization=*/true));
      }
    
      pass_manager->addPass(mlir::TFL::tac::CreateComputeCostPass());
      pass_manager->addPass(mlir::TFL::tac::CreatePickSubgraphsPass());
      // After this pass, we may consider add a pass to merge small functions into
      // large functions (and maybe other metadata as well).
    }
    
    const tac::TargetHardware* TacModule::GetTargetHardware(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

            "we cannot find the best scenarios for your case, so we just use "
            "your original model plans");
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreatePickSubgraphsPass() {
      return std::make_unique<PickSubgraphsPass>();
    }
    
    static PassRegistration<PickSubgraphsPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
Back to top