Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Innermost (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    diagonals of a matrix, with everything else padded with `padding`. `num_rows`
    and `num_cols` specify the dimension of the innermost matrix of the output. If
    both are not specified, the op assumes the innermost matrix is square and infers
    its size from `k` and the innermost dimension of `diagonal`. If only one of them
    is specified, the op assumes the unspecified value is the smallest possible
    based on other criteria.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
        assertTrue(orig.isDone());
      }
    
      // Verify that StackOverflowError in a long chain of SetFuture doesn't cause the entire toString
      // call to fail
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
        assertTrue(orig.isDone());
      }
    
      // Verify that StackOverflowError in a long chain of SetFuture doesn't cause the entire toString
      // call to fail
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	if ssa.GenssaDump[f.Name] {
    		fi := f.DumpFileForPhase("genssa")
    		if fi != nil {
    
    			// inliningDiffers if any filename changes or if any line number except the innermost (last index) changes.
    			inliningDiffers := func(a, b []src.Pos) bool {
    				if len(a) != len(b) {
    					return true
    				}
    				for i := range a {
    					if a[i].Filename() != b[i].Filename() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top