Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,248 for ucast (0.04 sec)

  1. src/runtime/runtime-gdb.py

    	# Goroutine is not running nor in syscall, so use the info in goroutine
    	if status != G_RUNNING and status != G_SYSCALL:
    		return pc.cast(vp), sp.cast(vp)
    
    	# If the goroutine is in a syscall, use syscallpc/sp.
    	pc, sp = ptr['syscallpc'], ptr['syscallsp']
    	if sp != 0:
    		return pc.cast(vp), sp.cast(vp)
    	# Otherwise, the goroutine is running, so it doesn't have
    	# saved scheduler state. Find G's OS thread.
    	m = ptr['m']
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/FactoryBasedStructNodeInitializer.java

            this.implementationInfo = implementationInfo;
        }
    
        @Override
        protected void initializePrivateData(MutableModelNode modelNode) {
            ModelType<T> delegateType = Cast.uncheckedCast(implementationInfo.getDelegateType());
            T instance = Cast.uncheckedCast(implementationInfo.create(modelNode));
            modelNode.setPrivateData(delegateType, instance);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ChildNodeInitializerStrategyAccessors.java

     */
    
    package org.gradle.model.internal.core;
    
    import org.gradle.internal.Cast;
    import org.gradle.model.internal.type.ModelType;
    
    public class ChildNodeInitializerStrategyAccessors {
    
        private static final ModelType<ChildNodeInitializerStrategy<?>> CHILD_NODE_INITIALIZER_STRATEGY_MODEL_TYPE =
            Cast.uncheckedCast(ModelType.of(ChildNodeInitializerStrategy.class));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractDependencyImpl.java

            configureAction.execute(versionConstraint);
            return Cast.uncheckedCast(this);
        }
    
        @Override
        public T attributes(Action<? super AttributeContainer> configureAction) {
            configureAction.execute(attributes);
            return Cast.uncheckedCast(this);
        }
    
        @Override
        public String getReason() {
            return reason;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/StripSymbols.java

            setDidWork(result.getDidWork());
        }
    
        private Compiler<StripperSpec> createCompiler() {
            NativePlatformInternal targetPlatform = Cast.cast(NativePlatformInternal.class, this.targetPlatform.get());
            NativeToolChainInternal toolChain = Cast.cast(NativeToolChainInternal.class, getToolChain().get());
            PlatformToolProvider toolProvider = toolChain.select(targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

      %accum_zp = "tf.Const"() { value = dense<0> : tensor<i32> } : () -> tensor<i32>
      %quant_input = "tf.Cast"(%input) {} : (tensor<1x9x9x9xi8>) ->
        tensor<1x9x9x9x!tf_type.qint8>
      %quant_filter = "tf.Cast"(%filter) {} : (tensor<3x3x9x10xi8>) ->
        tensor<3x3x9x10x!tf_type.qint8>
      %0 = "tf.UniformQuantizedConvolution"(
        %quant_input, %quant_filter, %input_scale, %input_zp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

        return cast(type, put(type, value));
      }
    
      @Override
      @CheckForNull
      public <T extends @NonNull B> T getInstance(Class<T> type) {
        return cast(type, get(type));
      }
    
      @CanIgnoreReturnValue
      @CheckForNull
      private static <T> T cast(Class<T> type, @CheckForNull Object value) {
        return Primitives.wrap(type).cast(value);
      }
    
      private Object writeReplace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      // etc.
      constexpr int64_t kLookupTableFindCostScale = 8;
      constexpr int64_t kLookupTableFindStringKeyCostScale = 16;
    
      auto value_type = mlir::cast<mlir::TensorType>(op.getValues().getType());
      auto key_type = mlir::cast<mlir::TensorType>(op.getKeys().getType());
    
      int64_t output_size = InferTensorSize(context, value_type);
    
      int64_t cost = kLookupTableFindCostScale * output_size;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelReference.java

            return Cast.uncheckedCast(new ModelReference<T>(path, type, null, null, description));
        }
    
        public static <T> ModelReference<T> of(String path, ModelType<T> type, String description) {
            return of(ModelPath.path(path), type, description);
        }
    
        public static <T> ModelReference<T> of(ModelPath path, ModelType<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeTopKV2 : Pat<(TF_TopKV2Op $input, $k, $ignored_sorted),
                             (TFL_TopKV2Op $input, $k)>;
    
    def ReductionDimensionIsLastDim : Constraint<CPred<"($0.cast<IntegerAttr>().getInt() == "
      "$1.getType().cast<ShapedType>().getRank() - 1 || $0.cast<IntegerAttr>().getInt() == -1)">>;
    
    // Legalizes TF_ApproxTopKOp to TFL_TopKV2Op with the following constraints:
    //    1. It computes max k
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top