Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 238 for END (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        read_op.replaceAllUsesWith(info.hoisted_read);
        read_op.erase();
      }
    }
    
    // For written resources, add its value at the end of each region to that
    // regions return value. For a region, its value at the end may be a value
    // written to that resource in that region, or its hoisted read value if the
    // resource is not written in that region. The return value can be vended out
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    		// while the original form keeps ind then nxt and end alive
    		start, end := v.min, v.max
    		if v.flags&indVarCountDown != 0 {
    			start, end = end, start
    		}
    
    		if !(start.Op == OpConst8 || start.Op == OpConst16 || start.Op == OpConst32 || start.Op == OpConst64) {
    			// if start is not a constant we would be winning nothing from inverting the loop
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    			p.errorExpected(x.Pos(), "expression")
    			x = &ast.BadExpr{x.Pos(), x.End()}
    		}
    	case *ast.CallExpr:
    	case *ast.StarExpr:
    	case *ast.UnaryExpr:
    		if t.Op == token.RANGE {
    			// the range operator is only allowed at the top of a for statement
    			p.errorExpected(x.Pos(), "expression")
    			x = &ast.BadExpr{x.Pos(), x.End()}
    		}
    	case *ast.BinaryExpr:
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	SBReg       register
    	GReg        register
    	allocatable regMask
    
    	// live values at the end of each block.  live[b.ID] is a list of value IDs
    	// which are live at the end of b, together with a count of how many instructions
    	// forward to the next use.
    	live [][]liveInfo
    	// desired register assignments at the end of each block.
    	// Note that this is a static map computed before allocation occurs. Dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    }
    
    // Returns a 1-d i64 elements attribute populated with numbers from start to
    // end, excluding.
    static DenseIntElementsAttr GetI64ElementsAttrForSeq(int start, int end,
                                                         Builder *builder) {
      int size = end - start;
    
      SmallVector<int64_t, 4> vals;
      vals.resize(size);
      std::iota(vals.begin(), vals.end(), start);
    
      TensorType ty =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Preconditions.java

      private static String badPositionIndexes(int start, int end, int size) {
        if (start < 0 || start > size) {
          return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
          return badPositionIndex(end, size, "end index");
        }
        // end < start
        return lenientFormat("end index (%s) must not be less than start index (%s)", end, start);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	beginTime := Date(math.MinInt32, January, 1, 0, 0, 0, 0, loc)
    	start, end := beginTime.ZoneBounds()
    	if !start.IsZero() || end.IsZero() {
    		t.Errorf("ZoneBounds of %v expects start is zero Time, got:\n  start=%v\n  end=%v", beginTime, start, end)
    	}
    
    	// If the zone goes on forever, end will be returned as a zero Time.
    	// Use math.MaxInt32 to avoid overflow of int arguments on 32-bit systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. pkg/apis/certificates/validation/validation_test.go

    a6b3a9kwCgYIKoZIzj0EAwIDSQAwRgIhAIWTKw/sjJITqeuNzJDAKU4xo1zL+xJ5
    MnVCuBwfwDXCAiEAw/1TA+CjPq9JC5ek1ifR0FybTURjeQqYkKpve1d?????????
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	invalidCertificateEmptyPEM = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	// first character is invalid
    	invalidCertificateNonASN1Data = []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Preconditions.java

      private static String badPositionIndexes(int start, int end, int size) {
        if (start < 0 || start > size) {
          return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
          return badPositionIndex(end, size, "end index");
        }
        // end < start
        return lenientFormat("end index (%s) must not be less than start index (%s)", end, start);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    void Append(Vector& a, const Container& b) {
      a.insert(a.end(), b.begin(), b.end());
    }
    
    template <typename Vector>
    void Append(Vector& a, const Vector& b) {
      a.insert(a.end(), b.begin(), b.end());
    }
    
    int64_t GetNumOps(func::FuncOp func) {
      int64_t num_ops = 0;
      for (auto it = func.begin(); it != func.end(); ++it) ++num_ops;
      return num_ops;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top