Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for h_scale (0.15 sec)

  1. cmd/veeam-sos-api.go

    //     specific system recommendations based on current support case statistics and storage performance possibilities.
    //     Vendors might change the settings based on the configuration and scale out of the solution (more storage nodes =>
    //     higher task limit).
    //
    //     <S3ConcurrentTaskLimit>
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd_386.go

    	data   int64
    	udata  *byte
    	ext    [4]uint64
    }
    
    type bintime struct {
    	sec  int32
    	frac uint64
    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	x86_shift    uint32
    	x86_hpet_idx uint32
    	res          [6]uint32
    }
    
    type vdsoTimekeep struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/defs_freebsd_riscv64.go

    	data   int64
    	udata  *byte
    	ext    [4]uint64
    }
    
    type bintime struct {
    	sec  int64
    	frac uint64
    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/validation/validation_test.go

    	for _, successCase := range successCases {
    		if errs := ValidateScale(&successCase); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	errorCases := []struct {
    		scale autoscaling.Scale
    		msg   string
    	}{{
    		scale: autoscaling.Scale{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "frontend",
    				Namespace: metav1.NamespaceDefault,
    			},
    			Spec: autoscaling.ScaleSpec{
    				Replicas: -1,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

            auto shape = GetAsVector(quant_tensor->shape());
            if (kUseUpdatedHybridSchemeDefault) {
              EXPECT_EQ(quant_tensor->quantization()->scale()->size(), shape[0]);
            } else {
              EXPECT_EQ(quant_tensor->quantization()->scale()->size(), 1);
            }
          } else {
            EXPECT_EQ(quant_tensor->type(), TensorType_FLOAT32);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		argLen:         2,
    		hasSideEffects: true,
    		generic:        true,
    	},
    }
    
    func (o Op) Asm() obj.As          { return opcodeTable[o].asm }
    func (o Op) Scale() int16         { return int16(opcodeTable[o].scale) }
    func (o Op) String() string       { return opcodeTable[o].name }
    func (o Op) SymEffect() SymEffect { return opcodeTable[o].symEffect }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. src/cmd/internal/obj/util.go

    		a.writeNameTo(w, abiDetail)
    
    	case TYPE_MEM:
    		a.WriteNameTo(w)
    		if a.Index != REG_NONE {
    			if a.Scale == 0 {
    				// arm64 shifted or extended register offset, scale = 0.
    				fmt.Fprintf(w, "(%v)", Rconv(int(a.Index)))
    			} else {
    				fmt.Fprintf(w, "(%v*%d)", Rconv(int(a.Index)), int(a.Scale))
    			}
    		}
    
    	case TYPE_CONST:
    		io.WriteString(w, "$")
    		a.WriteNameTo(w)
    		if a.Reg != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "string"
              },
              "replicas": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_experimental.cc

    }
    
    TFE_MonitoringBuckets* TFE_MonitoringNewExponentialBuckets(double scale,
                                                               double growth_factor,
                                                               int bucket_count) {
      return new TFE_MonitoringBuckets([scale, growth_factor, bucket_count]() {
        return tensorflow::monitoring::Buckets::Exponential(scale, growth_factor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    //              scale * rsqrt(variance + epsilon)
    // CHECK:  %[[MUL1:.*]] = "tf.Mul"(%[[ARG1:.*]], %[[RSQRT]])
    //              x * scale * rsqrt(variance + epsilon)
    // CHECK:  %[[MUL2:.*]] = "tf.Mul"(%[[ARG0:.*]], %[[MUL1]])
    //              mean * scale * rsqrt(variance + epsilon)
    // CHECK:  %[[MUL3:.*]] = "tf.Mul"(%[[ARG3:.*]], %[[MUL1]])
    //              offset - mean * scale * rsqrt(variance + epsilon)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top