Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for sumC (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK-SAME:        window_strides = dense<[1, 3, 4, 1]>
    // CHECK:           ^bb0(%[[ARG1:.*]]: tensor<f32>, %[[ARG2:.*]]: tensor<f32>):
    // CHECK:             %[[SUM1:.*]] = mhlo.add %[[ARG1]], %[[ARG2]] : tensor<f32>
    // CHECK:             mhlo.return %[[SUM1]] : tensor<f32>
    // CHECK:           })
    // CHECK-SAME:        -> tensor<2x4x6x7xf32>
    // CHECK:           %[[ONES:.*]] = mhlo.constant dense<1.000000e+00> : tensor<2x12x21x7xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{VPMSUMB, 0xfc0007ff00000000, 0x1000040800000000, 0x0, // Vector Polynomial Multiply-Sum Byte VX-form (vpmsumb VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VPMSUMD, 0xfc0007ff00000000, 0x100004c800000000, 0x0, // Vector Polynomial Multiply-Sum Doubleword VX-form (vpmsumd VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    };
    
    // Converts Mean op to HLO Reduce op.
    //
    //   %init = arith.constant dense<...> : tensor<T>
    //   %sum = "mhlo.reduce"(%inp, %init) ["mhlo.add"]
    //               {dimensions = ...}
    //   %divisor = arith.constant dense<...> : tensor<T>
    //   %mean = "mhlo.divide"(%sum, %divisor)
    class ConvertMeanOp
        : public GenericConvertReductionOp<ConvertMeanOp, TF::MeanOp, AddOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // most preferred is the one with the greatest sum of weights, i.e.
      // for each node that meets all of the scheduling requirements (resource
      // request, requiredDuringScheduling affinity expressions, etc.),
      // compute a sum by iterating through the elements of this field and adding
      // "weight" to the sum if the node matches the corresponding matchExpressions; the
      // node(s) with the highest sum are the most preferred.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// most preferred is the one with the greatest sum of weights, i.e.
    	// for each node that meets all of the scheduling requirements (resource
    	// request, requiredDuringScheduling affinity expressions, etc.),
    	// compute a sum by iterating through the elements of this field and adding
    	// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
    	// node(s) with the highest sum are the most preferred.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // most preferred is the one with the greatest sum of weights, i.e.
      // for each node that meets all of the scheduling requirements (resource
      // request, requiredDuringScheduling affinity expressions, etc.),
      // compute a sum by iterating through the elements of this field and adding
      // "weight" to the sum if the node matches the corresponding matchExpressions; the
      // node(s) with the highest sum are the most preferred.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// most preferred is the one with the greatest sum of weights, i.e.
    	// for each node that meets all of the scheduling requirements (resource
    	// request, requiredDuringScheduling affinity expressions, etc.),
    	// compute a sum by iterating through the elements of this field and adding
    	// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
    	// node(s) with the highest sum are the most preferred.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	if f.conn != nil {
    		f.conn.n -= n
    	}
    }
    
    // add adds n bytes (positive or negative) to the flow control window.
    // It returns false if the sum would exceed 2^31-1.
    func (f *http2outflow) add(n int32) bool {
    	sum := f.n + n
    	if (sum > n) == (f.n > 0) {
    		f.n = sum
    		return true
    	}
    	return false
    }
    
    const http2frameHeaderLen = 9
    
    var http2padZeros = make([]byte, 255) // zeros for padding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-DAG:       %[[VAL_2:.*]] = "tf.Const"() <{value = dense<1> : tensor<1xi64>}> : () -> tensor<1xi64>
    // CHECK:           %[[VAL_3:.*]] = "tf.Sum"(%[[VAL_0]], %[[VAL_2]]) <{keep_dims = false}> : (tensor<1x256xf32>, tensor<1xi64>) -> tensor<1xf32>
    // CHECK:           return %[[VAL_3]] : tensor<1xf32>
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top