Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for convertOp (0.14 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. 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)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.27.md

    ## Changelog since v1.27.0
    
    ## Changes by Kind
    
    ### Bug or Regression
    
    - Fixes a regression in 1.27.0 that resulted in "missing metadata in converted object" errors when modifying objects for multi-version custom resource definitions with a conversion strategy of `None`. ([#117305](https://github.com/kubernetes/kubernetes/pull/117305), [@ncdc](https://github.com/ncdc)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top