Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for outLines (0.29 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    def OutlineCompositesPass: Pass<"outline-composites", "func::FuncOp"> {
      let summary = "Outlines specific patterns into composites.";
      let description = [{
        Outline specific patterns into composites. Specific patterns can be any
        sub-DAG within a single `Block*`. The signature of the new composite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_outlining.cc

      builder->create<func::ReturnOp>(cluster_return_op.getLoc(),
                                      cluster_return_op.getOperands());
      cluster_return_op.erase();
    }
    
    // Builds a function that outlines region attached to cluster_op or launch_op,
    // and inserts built function into given module.
    template <typename ClusterOrLaunchOp>
    func::FuncOp BuildFunction(llvm::ArrayRef<Value> live_ins, ClusterOrLaunchOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_WHILEOUTLINEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // This pass outlines the cond/body region of the TFL WhileOp into functions and
    // replaces the regions with calls to these outlined functions.
    class WhileOutlinePass : public impl::WhileOutlinePassBase<WhileOutlinePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(WhileOutlinePass)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_cluster_formation.cc

    using mlir::SymbolUserOpInterface;
    using mlir::func::FuncOp;
    
    #define GEN_PASS_DEF_XLACLUSTERFORMATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    // Outlines partitioned call ops with `_XlaMustCompile` to device clusters.
    struct XlaClusterFormationPass
        : public impl::XlaClusterFormationPassBase<XlaClusterFormationPass> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/html.go

    }
    
    // ordered list of all available outline colors
    var outlines = [
        "outline-blue",
        "outline-red",
        "outline-blueviolet",
        "outline-darkolivegreen",
        "outline-fuchsia",
        "outline-sienna",
        "outline-gold",
        "outline-orangered",
        "outline-teal",
        "outline-maroon",
        "outline-black"
    ];
    
    // state: which value is outlined this color?
    var outlined = {};
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

    import org.gradle.launcher.daemon.server.api.HandleStop
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    /**
     * Outlines the lifecycle of the daemon given different sequences of events.
     *
     * These tests are a little different due to their async nature. We use the classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/quantize_variables.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(QuantizeVariablesPass)
      explicit QuantizeVariablesPass() = default;
    
      void runOnOperation() override;
    
     private:
      // Outlines the regions of the WhileOp's cond and body and insert function
      // calls instead.
      void QuantizeVariable(OpBuilder &builder,
                            const std::vector<VarHandleOp> &var_handle_op);
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. docs/hotfixes.md

    # Introduction
    
    This document outlines how to make hotfix binaries and containers for MinIO?. The main focus in this article is about how to backport patches to a specific branch and finally building binaries/containers.
    
    ## Pre-pre requisite
    
    - A working knowledge of MinIO codebase and its various components.
    - A working knowledge of AWS S3 API behaviors and corner cases.
    
    ## Pre-requisite for backporting any fixes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      rewriter.create<func::ReturnOp>(output_mul_op.getLoc(),
                                      output_mul_op.getResult());
      rewriter.clearInsertionPoint();
      return new_func;
    }
    
    // Outlines non-approximate GELU into a stablehlo composite.
    //
    //    -> mul 1/sqrt(2) -> erf -> add 1 ->
    // in                                    mul
    //    ---------> mul 0.5 --------------->
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

        llvm::function_ref<bool(tf_device::ClusterOp, ElementsAttr)> filter = {});
    
    // Creates a pass that outlines regions of tf_device.cluster operations.
    std::unique_ptr<OperationPass<ModuleOp>> CreateClusterOutliningPass();
    
    // Creates a pass that outlines regions of tf_device.launch operations.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLaunchOutliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top