Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for intVar (0.23 sec)

  1. cmd/handler-api.go

    	defer t.mu.RUnlock()
    
    	return t.syncEvents
    }
    
    func (t *apiConfig) getObjectMaxVersions() int64 {
    	t.mu.RLock()
    	defer t.mu.RUnlock()
    
    	if t.objectMaxVersions <= 0 {
    		// defaults to 'IntMax' when unset.
    		return math.MaxInt64
    	}
    
    	return t.objectMaxVersions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		lenAddr := s.newValue1I(ssa.OpOffPtr, s.f.Config.Types.IntPtr, s.config.PtrSize, left)
    		s.store(types.Types[types.TINT], lenAddr, len)
    	case t.IsSlice():
    		if skip&skipLen == 0 {
    			len := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], right)
    			lenAddr := s.newValue1I(ssa.OpOffPtr, s.f.Config.Types.IntPtr, s.config.PtrSize, left)
    			s.store(types.Types[types.TINT], lenAddr, len)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Propagates any constant operand of call_op to the called function body's
      // corresponding argument if the callee has only one use.
      //
      // TODO(b/154065712): Move this to a more general inter-procedural constant
      // folding pass.
      void PropagateConstantToCallee(CallOpInterface call_op, FuncOp func,
                                     ModuleOp module);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    .
      }];
    
      let arguments = (ins
        Arg<TF_NumberTensor, [{the input tensor}]>:$lhs,
        Arg<TF_NumberTensor, [{the kernel tensor}]>:$rhs,
        Arg<TF_I32OrI64Tensor, [{the inter-window strides}]>:$window_strides,
        Arg<TF_I32OrI64Tensor, [{the padding to apply at the start and end of each input dimensions}]>:$padding,
        Arg<TF_I32OrI64Tensor, [{dilation to apply between input elements}]>:$lhs_dilation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      LogicalResult matchAndRewrite(TF::XlaShardingOp op,
                                    PatternRewriter &rewriter) const override {
        // TODO(b/148313088): define sharding attribute struct in MLIR intead of
        // using a string.
        if (!op.get_XlaSharding().has_value()) return failure();
    
        NamedAttribute call_target_name = rewriter.getNamedAttr(
            "call_target_name", rewriter.getStringAttr("Sharding"));
    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