Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for somme (0.18 sec)

  1. pkg/registry/batch/job/strategy_test.go

    					PodFailurePolicy: &batch.PodFailurePolicy{
    						Rules: []batch.PodFailurePolicyRule{},
    					},
    				},
    			},
    		},
    		"create job with multiple pod failure policy rules, some using FailIndex action; JobPodFailurePolicy enabled, JobBackoffLimitPerIndex disabled": {
    			enableJobBackoffLimitPerIndex: false,
    			enableJobPodFailurePolicy:     true,
    			job: batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

     public:
      // Sets benefit to 10 to make this pattern more preferred than smaller local
      // transformations like `stablehlo.transpose`->`tfl.transpose`, as this
      // pattern involves `stablehlo.transpose` in some cases.
      explicit RewriteQuantizedDotGeneralOpToTflFullyConnectedOrBatchMatmulOp(
          MLIRContext* ctx)
          : OpRewritePattern<stablehlo::DotGeneralOp>(ctx, /*benefit=*/10) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& is64BitFloat(t1)
    	&& isSamePtr(p1, p2)
    	&& n >= o + 8
    	=> (Const64F [0])
    
    // Eliminate stores of values that have just been loaded from the same location.
    // We also handle the common case where there are some intermediate stores.
    (Store {t1} p1 (Load <t2> p2 mem) mem)
    	&& isSamePtr(p1, p2)
    	&& t2.Size() == t1.Size()
    	=> mem
    (Store {t1} p1 (Load <t2> p2 oldmem) mem:(Store {t3} p3 _ oldmem))
    	&& isSamePtr(p1, p2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

        @CheckForNull
        /*
         * Our checker arguably should produce a nullness error here until we see @NonNull in JDK APIs.
         * But it doesn't, which may be a sign that we still permit parameter contravariance in some
         * cases?
         */
        public V computeIfPresent(
            K key, BiFunction<? super K, ? super @NonNull V, ? extends @Nullable V> remappingFunction) {
          throw new UnsupportedOperationException();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return true;
      }
    };
    
    // This is the UndoBroadcastFullyConnectedBiasAdd pattern in
    // optimize_patterns.td but accounting for QDQ preceding Add's RHS.
    // The following doesn't work in TableGen due to some issues reconstructing
    // TFL_DequantizeOp.
    // def UndoBroadcastFullyConnectedBiasAddWithQDQs : Pat<
    //   (TFL_AddOp $lhs,
    //     (TFL_DequantizeOp
    //       (TFL_QuantizeOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    		freezeServices()
    	case serviceUnFreeze:
    		unfreezeServices()
    	case serviceRestart, serviceStop:
    		if !dryRun {
    			globalServiceSignalCh <- serviceSig
    		}
    	}
    }
    
    // ServerProperties holds some server information such as, version, region
    // uptime, etc..
    type ServerProperties struct {
    	Uptime       int64    `json:"uptime"`
    	Version      string   `json:"version"`
    	CommitID     string   `json:"commitID"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    }
    
    var ymshuf = []ytab{
    	{Zibm_r, 2, argList{Yi8, Ymm, Ymr}},
    }
    
    var ymshufb = []ytab{
    	{Zm2_r, 2, argList{Yxm, Yxr}},
    }
    
    // It should never have more than 1 entry,
    // because some optab entries have opcode sequences that
    // are longer than 2 bytes (zoffset=2 here),
    // ROUNDPD and ROUNDPS and recently added BLENDPD,
    // to name a few.
    var yxshuf = []ytab{
    	{Zibm_r, 2, argList{Yu8, Yxm, Yxr}},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		if !ok {
    			return nil, fmt.Errorf("cannot cast to workload entry")
    		}
    
    		if wg.Template == nil {
    			return nil, fmt.Errorf("template is required")
    		}
    		// Do not call validateWorkloadEntry. Some fields, such as address, are required in WorkloadEntry
    		// but not in the template since they are auto populated
    
    		if wg.Metadata != nil {
    			if err := labels.Instance(wg.Metadata.Labels).Validate(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // on the channels dim for NCHW layout as axis=-2.
      if (axis < 0) return failure();
    
      // All concat operands must be defined by ops of the same kind (e.g. tf.Mul),
      // or some other ops that we might convert to using the same op kind above
      // (e.g. converting op A to tf.Mul(A, 1.0))
      // TODO(hongm): generalize the code here to support cases where the first arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    		scheduleReplication(ctx, objInfo, objectAPI, dsc, replication.ObjectReplicationType)
    	}
    
    	setPutObjHeaders(w, objInfo, false, r.Header)
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the x-amz-copy-source-version-id header key to be literally
    	// "x-amz-copy-source-version-id"- not in canonicalized form, preserve it.
    	if srcOpts.VersionID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top