Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for realize (0.21 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. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          Value value, const std::string& name, unsigned buffer_idx,
          const std::optional<BufferOffset<tflite::QuantizationParameters>>&
              quant_parameters);
    
      // TODO(b/137395003): Legalize tf.IfOp to TFLite dialect, and change the
      // following method to handle TFL::IfOp.
      BufferOffset<tflite::Operator> BuildIfOperator(
          mlir::TF::IfOp op, const std::vector<int32_t>& operands,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    func TestAutomaticHTTP2_Serve_WithTLSConfig(t *testing.T) {
    	setParallel(t)
    	defer afterTest(t)
    	ln := newLocalListener(t)
    	ln.Close() // immediately (not a defer!)
    	var s Server
    	// Set the TLSConfig. In reality, this would be the
    	// *tls.Config given to tls.NewListener.
    	s.TLSConfig = &tls.Config{
    		NextProtos: []string{"h2"},
    	}
    	if err := s.Serve(ln); err == nil {
    		t.Fatal("expected an error")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top