Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for convertOp (0.21 sec)

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

      return axis < 0 ? axis + rank : axis;
    }
    
    /// Returns a `ConvertOp` that casts the elements to a i64 type while retaining
    /// the shape of the input value.
    static ConvertOp CastValueToI64(Location loc, Value value,
                                    PatternRewriter *rewriter) {
      return rewriter->create<ConvertOp>(loc, value, rewriter->getIntegerType(64));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[CONVERT_1:%.+]] = mhlo.convert [[ABS1]]
      // CHECK-DAG: [[CONVERT_2:%.+]] = mhlo.convert %arg2
      // CHECK-DAG: [[DIV:%.+]] = mhlo.divide [[CONVERT_1]], [[CONVERT_2]]
      // CHECK-DAG: [[CEIL:%.+]] = mhlo.ceil [[DIV]]
      // CHECK-DAG: [[CONVERT_3:%.+]] = mhlo.convert [[CEIL]]
      // CHECK-DAG: [[RESHAPE:%.+]] = mhlo.reshape [[CONVERT_3]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <pre>
    *Point(p)        // same as *(Point(p))
    (*Point)(p)      // p is converted to *Point
    &lt;-chan int(c)    // same as &lt;-(chan int(c))
    (&lt;-chan int)(c)  // c is converted to &lt;-chan int
    func()(x)        // function signature func() x
    (func())(x)      // x is converted to func()
    (func() int)(x)  // x is converted to func() int
    func() int(x)    // x is converted to func() int (unambiguous)
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Description: "CustomResourceConversion describes how to convert different versions of a CR.",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"strategy": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			// simulate the recursive validation calls
    			conversionCount := 0
    			converter := func(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error) {
    				conversionCount++
    				return defaultConverter(schema, isRoot)
    			}
    			celContext := RootCELContext(tt.schema)
    			celContext.converter = converter
    			opts := validationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "namespaceSelector": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Fixed issue where `kubectl-convert` would fail when encountering resources that could not be converted to the specified api version. New behavior is to warn the user of the failed conversions and continue to convert the remaining resources. ([#117002](https://github.com/kubernetes/kubernetes/pull/117002), [@gxwilkerson33](https://github.com/gxwilkerson33))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // boundsCheck generates bounds checking code. Checks if 0 <= idx <[=] len, branches to exit if not.
    // Starts a new block on return.
    // On input, len must be converted to full int width and be nonnegative.
    // Returns idx converted to full int width.
    // If bounded is true then caller guarantees the index is not out of bounds
    // (but boundsCheck will still extend the index to full int width).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		// Ephemeral containers don't need looser constraints for pod templates, so it's convenient to apply both validations
    		// here where we've already converted EphemeralContainerCommon to Container.
    		allErrs = append(allErrs, validateContainerOnlyForPod(c, idxPath)...)
    
    		// Ephemeral containers must have a name unique across all container types.
    		if allNames.Has(ec.Name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top