Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for Imcasts (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // converting back from a quantized to quantizable (expressed) type.
    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    // converting back from a quantized to quantizable (expressed) type.
    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type IfData struct, Ibytes uint32
    pkg syscall (freebsd-386-cgo), type IfData struct, Ierrors uint32
    pkg syscall (freebsd-386-cgo), type IfData struct, Imcasts uint32
    pkg syscall (freebsd-386-cgo), type IfData struct, Ipackets uint32
    pkg syscall (freebsd-386-cgo), type IfData struct, Iqdrops uint32
    pkg syscall (freebsd-386-cgo), type IfData struct, Lastchange Timeval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
  4. src/cmd/fix/cftype.go

    	"reflect"
    	"strings"
    )
    
    func init() {
    	register(cftypeFix)
    }
    
    var cftypeFix = fix{
    	name:     "cftype",
    	date:     "2017-09-27",
    	f:        cftypefix,
    	desc:     `Fixes initializers and casts of C.*Ref and JNI types`,
    	disabled: false,
    }
    
    // Old state:
    //
    //	type CFTypeRef unsafe.Pointer
    //
    // New state:
    //
    //	type CFTypeRef uintptr
    //
    // and similar for other *Ref types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

            withValidityAssertion { analysisSession.smartCastProvider.getSmartCastedInfo(this) }
    
        /**
         * Returns the list of implicit smart-casts which are required for the expression to be called. Includes only implicit
         * smart-casts:
         *
         * ```kt
         * if (this is String) {
         *   this.substring() // 'this' receiver is explicit, so no implicit smart-cast here.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      if (num_cores_per_replica != 1) return success();
    
      llvm::SetVector<Value> bcasts;
      cluster->walk([&](Operation* op) {
        if (op == cluster) return WalkResult::advance();
        for (auto operand : op->getOperands()) {
          Operation* scope = operand.getParentBlock()->getParentOp();
          if (scope->isProperAncestor(replicate)) {
            bcasts.insert(operand);
          }
        }
        return WalkResult::advance();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue30527.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo
    
    // Issue 30527: function call rewriting casts untyped
    // constants to int because of ":=" usage.
    
    package cgotest
    
    import "cmd/cgo/internal/test/issue30527"
    
    func issue30527G() {
    	issue30527.G(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 376 bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalTransformers.java

    public abstract class InternalTransformers {
    
        /**
         * Creates a transformer that simply type casts the input to the given output type.
         *
         * @param outputType The type to cast the input to
         * @param <O> The type of the transformed object
         * @param <I> The type of the object to be transformed
         * @return A transformer that simply type casts the input to the given output type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import javax.annotation.Nullable;
    
    public abstract class Cast {
    
        /**
         * Casts the given object to the given type, providing a better error message than the default.
         *
         * The standard {@link Class#cast(Object)} method produces unsatisfactory error messages on some platforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/cast_bf16_ops_to_f32.cc

          if (getElementTypeOrSelf(value).isBF16()) {
            return success();
          }
        }
        return failure();
      }
    
      void rewrite(Operation* op, PatternRewriter& rewriter) const override {
        // Casts inputs of the operation.
        for (int i = 0; i < op->getNumOperands(); i++) {
          Value input = op->getOperand(i);
          if (getElementTypeOrSelf(input).isBF16()) {
            Value f32_cast = rewriter.create<TF::CastOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top