Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 160 for Imcasts (0.13 sec)

  1. maven-di/src/main/java/org/apache/maven/di/Key.java

                    : typeArgument;
        }
    
        public Type getType() {
            return type;
        }
    
        /**
         * A shortcut for <code>{@link Types#getRawType(Type)}(key.getType())</code>.
         * Also casts the result to a properly parameterized class.
         */
        @SuppressWarnings("unchecked")
        public Class<T> getRawType() {
            return (Class<T>) Types.getRawType(type);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h

    // inputs and returns the second input. Functions like this are used by update
    // scatter like ops.
    template <>
    LogicalResult MatchBinaryReduceFunction<void>(mlir::Region& function);
    
    // Util that casts 'val' to Int32 by adding a tfl cast Op.
    Value CreateCastToInt32(Value val, Location loc, PatternRewriter& rewriter);
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 11:35:25 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

        }
      }
    
      private static boolean equal(@Nullable Object a, @Nullable Object b) {
        return a == b || (a != null && a.equals(b));
      }
    
      // This one-liner saves us from some ugly casts
      protected Entry<K, V> entry(K key, V value) {
        return Helpers.mapEntry(key, value);
      }
    
      @Override
      protected void expectContents(Collection<Entry<K, V>> expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::quant::CreateReplaceCastHacksWithTFXLAOpsPass());
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCSEPass());
      // Use optimize pass to remove double casts that are inserted when inlining
      // functions.
      pm.addNestedPass<mlir::func::FuncOp>(mlir::quant::CreateOptimizePass());
    }
    
    }  // namespace quantization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

        if (map instanceof ImmutableClassToInstanceMap) {
          @SuppressWarnings("rawtypes") // JDT-based J2KT Java frontend does not permit the direct cast
          Map rawMap = map;
          @SuppressWarnings("unchecked") // covariant casts safe (unmodifiable)
          ImmutableClassToInstanceMap<B> cast = (ImmutableClassToInstanceMap<B>) rawMap;
          return cast;
        }
        return new Builder<B>().putAll(map).build();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

        }
      }
    
      private static boolean equal(@Nullable Object a, @Nullable Object b) {
        return a == b || (a != null && a.equals(b));
      }
    
      // This one-liner saves us from some ugly casts
      protected Entry<K, V> entry(K key, V value) {
        return Helpers.mapEntry(key, value);
      }
    
      @Override
      protected void expectContents(Collection<Entry<K, V>> expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (darwin-386), type IfData struct, Hwassist uint32
    pkg syscall (darwin-386), type IfData struct, Ibytes uint32
    pkg syscall (darwin-386), type IfData struct, Ierrors uint32
    pkg syscall (darwin-386), type IfData struct, Imcasts uint32
    pkg syscall (darwin-386), type IfData struct, Ipackets uint32
    pkg syscall (darwin-386), type IfData struct, Iqdrops uint32
    pkg syscall (darwin-386), type IfData struct, Lastchange Timeval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    //===----------------------------------------------------------------------===//
    // Op quantization pass-through patterns.
    //===----------------------------------------------------------------------===//
    // Casts result type of $1 to a quantized type by using the quantization
    // parameters from the type in $0.
    class UpdateShapeWithAxis<int i> : NativeCodeCall<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

          // Replace the current terminator (a `tf.Yield` op) with an `scf.yield`
          // op. The input of the `scf.yield` op is a list of results of `tf.Cast`
          // ops, each of which casts an operand of the current terminator to the
          // corresponding result type of the `tf.IfRegion` op.
          Operation* current_terminator =
              scf_then_or_else_region.front().getTerminator();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

        if (!input_tensor_type || !output_tensor_type) {
          return failure();
        }
    
        // Canonicalize two tfr.cast pairs with different element type to
        // two tfr.casts with the same element type followed by a tf.Cast.
        if ((input_tensor_type.getElementType() !=
             output_tensor_type.getElementType()) &&
            !isQuantizedType(input_type) && !isQuantizedType(output_type)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
Back to top