Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,138 for Inline1 (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/bridge.h

    namespace mlir {
    namespace TF {
    
    inline constexpr char kStandardPipelineBefore[] = "standard_pipeline_before";
    inline constexpr char kStandardPipelineAfter[] = "standard_pipeline_after";
    
    // Runs all passes involved in transforming or optimizing an MLIR graph without
    // any target specialization. When enable_logging is true, enables
    // tensorflow::BridgeLogger. When enable_inliner is true, enables the inliner
    // pass.
    ABSL_DEPRECATED(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 22:46:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/runtime/traceback_test.go

    		},
    		// function, inlined
    		{
    			func(buf []byte) int { return testTracebackGenericFnInlined[int](buf) },
    			"testTracebackGenericFnInlined[...](",
    		},
    		// method, not inlined
    		{
    			x.M,
    			"testTracebackGenericTyp[...].M(",
    		},
    		// method, inlined
    		{
    			func(buf []byte) int { return x.Inlined(buf) },
    			"testTracebackGenericTyp[...].Inlined(",
    		},
    	}
    	var buf [1000]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/inject-config-inline.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 202 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug_lines_test.go

    // Matches lines in genssa output that describe an inlined file.
    // Note it expects an unadventurous choice of basename.
    var sepRE = regexp.QuoteMeta(string(filepath.Separator))
    var inlineLine *regexp.Regexp = regexp.MustCompile(`^#\s.*` + sepRE + `[-\w]+\.go:(\d+)`)
    
    // this matches e.g.                                 #  /pa/inline-dumpxxxx.go:6
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    	// from another package is imported and inlined.
    	Dcl     []*Name
    	HaveDcl bool // whether we've loaded Dcl
    
    	// Function properties, encoded as a string (these are used for
    	// making inlining decisions). See cmd/compile/internal/inline/inlheur.
    	Properties string
    
    	// CanDelayResults reports whether it's safe for the inliner to delay
    	// initializing the result parameters until immediately before the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonLogFileUtilsTest.groovy

        }
    
        private TestFile log(String logText) {
            def f = temp.file("log.txt")
            f.text = logText.stripIndent(true)
            return f
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/inlining.mlir

    // CHECK-LABEL: func @inline_simple(
    func.func @inline_simple() -> tensor<2xi32> {
      // CHECK-NEXT: %[[CST:.*]] = "tf.Const"
      // CHECK-NEXT: return %[[CST]]
      %result = "tf.StatefulPartitionedCall"() {config = "", config_proto = "", executor_type = "", f = @simple_callee} : () -> tensor<2xi32>
      func.return %result : tensor<2xi32>
    }
    
    // Test that functions with 'tf._noinline' are not inlined.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource_inlining.mlir

    // RUN: tf-opt -tf-shape-inference -inline='default-pipeline=''' %s | FileCheck %s --dump-input=always
    // RUN: tf-opt -tf-standard-pipeline=enable-inliner %s | FileCheck %s --dump-input=always
    
    // Tests function with argument has no resource subtype but caller operand has a
    // resource subtype, and after shape inference, function argument is refined and
    // no `tf.Cast` ops are generated.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/pprof/proto.go

    // Here's an example of how Go 1.17 writes out inlined functions, compiled for
    // linux/amd64. The disassembly of main.main shows two levels of inlining: main
    // calls b, b calls a, a does some work.
    //
    //   inline.go:9   0x4553ec  90              NOPL                 // func main()    { b(v) }
    //   inline.go:6   0x4553ed  90              NOPL                 // func b(v *int) { a(v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/runtime/symtab_test.go

    	// an inline tree.
    	inlined()
    	inlined()
    
    	// Acquire a PC in this function.
    	pc, _, _, ok := runtime.Caller(0)
    	if !ok {
    		t.Fatalf("Caller(0) got ok false, want true")
    	}
    
    	return pc
    }
    
    // Test that CallersFrames handles PCs in the alignment region between
    // functions (int 3 on amd64) without crashing.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top