Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for idioms (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      ::xla::GatherDimensionNumbers dims;
      return dims.ParseFromString(attr.getValue().str());
    }
    
    GatherDimensionNumbersAttr GetGatherDimNumsAttr(StringAttr attr,
                                                    Builder *builder) {
      ::xla::GatherDimensionNumbers dims;
      if (!dims.ParseFromString(attr.getValue().str())) return {};
      return ::xla::ConvertGatherDimensionNumbers(dims, builder);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/func.go

    	}
    	return f.cachedPostorder
    }
    
    func (f *Func) Postorder() []*Block {
    	return f.postorder()
    }
    
    // Idom returns a map from block ID to the immediate dominator of that block.
    // f.Entry.ID maps to nil. Unreachable blocks map to nil as well.
    func (f *Func) Idom() []*Block {
    	if f.cachedIdom == nil {
    		f.cachedIdom = dominators(f)
    	}
    	return f.cachedIdom
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    # tensor 't' shape is [1, 2, 3, 4]
    
    # 'dims' is [3] or 'dims' is [-1]
    reverse(t, dims) ==> [[[[ 3,  2,  1,  0],
                            [ 7,  6,  5,  4],
                            [ 11, 10, 9, 8]],
                           [[15, 14, 13, 12],
                            [19, 18, 17, 16],
                            [23, 22, 21, 20]]]]
    
    # 'dims' is '[1]' (or 'dims' is '[-3]')
    reverse(t, dims) ==> [[[[12, 13, 14, 15],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - The feature gate `LegacyServiceAccountTokenTracking` (GA since 1.28) is now removed because the feature is unconditionally enabled. ([#122409](https://github.com/kubernetes/kubernetes/pull/122409), [@Rei1010](https://github.com/Rei1010))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    _Nothing has changed._
    
    ### Removed
    _Nothing has changed._
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Scheduler framework: PreBind implementations are now allowed to return Pending and Unschedulable status...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Linux/arm will not ship in Kubernetes 1.27 as we are running into issues with building artifacts using golang 1.20.2 (please see issue #116492) ([#115742](https://github.com/kubernetes/kubernetes/pull/115742), [@dims](https://github.com/dims)) [SIG Architecture, Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    _Nothing has changed._
    
    ### Removed
    _Nothing has changed._
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top