Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 203 for DEAD (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

        // (a) Its legal to duplicate the Op.
        // (b) The Op is inside a single use function. If that function is inlined,
        //     post inlining, the function will be dead and eliminated from the IR.
        //     So there won't be any code duplication.
        // plus the function caller op can be replaced by inlined ops.
        return !wouldBeCloned || TensorFlowDialect::CanDuplicate(op);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/runtime/traceruntime.go

    		heapGoal = 0
    	}
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvHeapGoal, traceArg(heapGoal))
    }
    
    // GoCreateSyscall indicates that a goroutine has transitioned from dead to GoSyscall.
    //
    // Unlike GoCreate, the caller must be running on gp.
    //
    // This occurs when C code calls into Go. On pthread platforms it occurs only when
    // a C thread calls into Go code for the first time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    }
    
    // Cleanup cleans up the file syntax x after any edit operations.
    // To avoid quadratic behavior, (*Line).markRemoved marks the line as dead
    // by setting line.Token = nil but does not remove it from the slice
    // in which it appears. After edits have all been indicated,
    // calling Cleanup cleans out the dead lines.
    func (x *FileSyntax) Cleanup() {
    	w := 0
    	for _, stmt := range x.Stmt {
    		switch stmt := stmt.(type) {
    		case *Line:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/runtime/traceback_test.go

    			"testTracebackArgs8d({0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, {0x9, 0xa, ...}, ...})",
    		},
    
    		// Register argument liveness.
    		// 1, 3 are used and live, 2, 4 are dead (in register ABI).
    		// Address-taken (7) and stack ({5, 6}) args are always live.
    		{
    			func() int {
    				poisonStack() // poison arg area to make output deterministic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  5. src/internal/coverage/decodecounter/decodecounterfile.go

    	// Alternative/experimental path: one way we could handling writing
    	// out counter data would be to just memcpy the counter segment
    	// out to a file, meaning that a region in the counter memory
    	// corresponding to a dead (never-executed) function would just be
    	// zeroes. The code path below handles this case.
    	var nc uint32
    	var err error
    	if supportDeadFunctionsInCounterData {
    		for {
    			nc, err = rdu32()
    			if err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/html/template/js_test.go

    		// left to right.
    		{jsCtxRegexp, "x---"}, // A postfix -- then a -.
    		// return followed by a slash returns the regexp literal or the
    		// slash starts a regexp literal in an expression statement that
    		// is dead code.
    		{jsCtxRegexp, "return"},
    		{jsCtxRegexp, "return "},
    		{jsCtxRegexp, "return\t"},
    		{jsCtxRegexp, "return\n"},
    		{jsCtxRegexp, "return\u2028"},
    		// Identifiers can be divided and cannot validly be preceded by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.h

        // compilable..
        bool allow_inaccurate_ops = false;
    
        // Require the function to be always compilable, regardless whether some
        // control flow branches might be dead for a given input.
        bool require_always_compilable = false;
    
        // Whether string constants are compilable.
        bool allow_string_consts = true;
    
        // Whether to allow the compilation of CollectiveReduceV2Op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            TaskProvider<FindBrokenInternalLinks> checkDeadInternalLinks = tasks.register("checkDeadInternalLinks", FindBrokenInternalLinks.class, task -> {
                task.getReportFile().convention(layout.getBuildDirectory().file("reports/dead-internal-links.txt"));
                task.getDocumentationRoot().convention(extension.getUserManual().getStagedDocumentation());
                task.getJavadocRoot().convention(layout.getBuildDirectory().dir("javadoc"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. src/runtime/defer_test.go

    		} else {
    			defer doappend(4)
    		}
    	}
    	panic("testConditional")
    }
    
    // Test that there is no compile-time or run-time error if an open-coded defer
    // call is removed by constant propagation and dead-code elimination.
    func TestDisappearingDefer(t *testing.T) {
    	switch runtime.GOOS {
    	case "invalidOS":
    		defer func() {
    			t.Fatal("Defer shouldn't run")
    		}()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "JumpTable", controls: 1}, // multiple successors, the integer Controls[0] selects which one
    
    	// transient block state used for dead code removal
    	{name: "First"}, // 2 successors, always takes the first one (second is dead)
    }
    
    func init() {
    	archs = append(archs, arch{
    		name:    "generic",
    		ops:     genericOps,
    		blocks:  genericBlocks,
    		generic: true,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top