Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Testdata (0.09 sec)

  1. doc/go_spec.html

    as in an <a href="#Assignment_statements">assignment statement</a>.
    </p>
    
    <pre>
    var testdata *struct {
    	a *[7]int
    }
    for i, _ := range testdata.a {
    	// testdata.a is never evaluated; len(testdata.a) is constant
    	// i ranges from 0 to 6
    	f(i)
    }
    
    var a [10]string
    for i, s := range a {
    	// type of i is int
    	// type of s is string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      LogicalResult matchAndRewrite(OpTy op,
                                    PatternRewriter &rewriter) const override {
        auto data_type = mlir::dyn_cast<RankedTensorType>(op.getData().getType());
        if (!data_type) return failure();
        int64_t data_rank = data_type.getRank();
    
        auto segment_ids_type =
            mlir::dyn_cast<RankedTensorType>(op.getSegmentIds().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top