Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for realize (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // RUN: tf-opt %s -tfl-legalize-tf --cse -split-input-file| FileCheck %s --dump-input=fail
    
    func.func @add(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<1xf32> {
      %0 = "tf.Add"(%arg0, %arg1) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
      func.return %0: tensor<1xf32>
    
    // CHECK-LABEL: add
    // CHECK:  tfl.add %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<1xf32>
    // CHECK:  return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // Write writes the headers described in h to w.
    //
    // This method has a value receiver, despite the somewhat large size
    // of h, because it prevents an allocation. The escape analysis isn't
    // smart enough to realize this function doesn't mutate h.
    func (h extraHeader) Write(w *bufio.Writer) {
    	if h.date != nil {
    		w.Write(headerDate)
    		w.Write(h.date)
    		w.Write(crlf)
    	}
    	if h.contentLength != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&rdquo;":                           "\u201d",
    	"&rdquor;":                          "\u201d",
    	"&rdsh;":                            "\u21b3",
    	"&real;":                            "\u211c",
    	"&realine;":                         "\u211b",
    	"&realpart;":                        "\u211c",
    	"&reals;":                           "\u211d",
    	"&rect;":                            "\u25ad",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Transform Einsum to other TF Ops for the supported variants";
      let constructor = "TF::CreateTransformEinsumPass()";
    }
    
    def LegalizeTFGToTFPass : Pass<"tfe-legalize-tfg", "ModuleOp"> {
      let summary = "Legalize from TFG to the TFE dialect";
      let constructor = "TF::CreateLegalizeTFGToTFEPass()";
    }
    
    def ReplicateToIslandPass : Pass<"tf-replicate-to-island", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      } else {
        window_strides->resize(rank, 1);
      }
    
      llvm::SmallVector<int64_t, 10> padding;
      if (rw.getPadding().has_value()) {
        padding.insert(padding.begin(),
                       rw.getPadding()->getValues<int64_t>().begin(),
                       rw.getPadding()->getValues<int64_t>().end());
      } else {
        padding.resize(2 * rank, 0);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.util.Map); public int read() throws java.io.IOException; public int read(char[], int, int) throws java.io.IOException; public long skip(long) throws java.io.IOException; private void readAndInterpolateLi() throws java.io.IOException; private String readLine() throws java.io.IOException; private String replaceWithInterpola(String, java.util.Map); private java.util.Map evaluateExpressions(java.util.Set); private java.util.Set parseForExpressions(String); private int findDelimiter(String, String, int);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

                                   : OpBuilder::atBlockEnd(body, listener);
        }
      }];
    
      // Canonicalizer wasn't defined for this one. In practise, we legalize the
      // tf.IfOp to scf.If op first and then legalize it to tfl.if to reduce
      // code redundancy.
    }
    
    def TFL_WhileOp : Op<TFL_Dialect, "while", [
        DeclareOpInterfaceMethods<LoopLikeOpInterface, ["isDefinedOutsideOfLoop"]>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    java.util.Map); public int read() throws java.io.IOException; public int read(char[], int, int) throws java.io.IOException; public long skip(long) throws java.io.IOException; private void readAndInterpolateLi() throws java.io.IOException; private String readLine() throws java.io.IOException; private String replaceWithInterpola(String, java.util.Map); private java.util.Map evaluateExpressions(java.util.Set); private java.util.Set parseForExpressions(String); private int findDelimiter(String, String, int);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // 3) If `is_stateless` is false and no ordering token is present, then we treat
    //    the op conservatively which means that different op instances need
    //    dependencies. This is realized by always returning the same string ("")
    //    in this case. In fact, we could return any string here, as long as it is
    //    the same string for all op instances without ordering tokens.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. go.sum

    github.com/chromedp/sysutil v1.0.0/go.mod h1:kgWmDdq8fTzXYcKIBqIYvRRTnYb9aNS9moAV0xufSww=
    github.com/chzyer/logex v1.2.1/go.mod h1:JLbx6lG2kDbNRFnfkgvh4eRJRPX1QCoOIWomwysCBrQ=
    github.com/chzyer/readline v1.5.1/go.mod h1:Eh+b79XXUwfKfcPLepksvw2tcLE/Ct21YObkaSkeBlk=
    github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38GC8=
    github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top