Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for small8 (0.18 sec)

  1. RELEASE.md

    *   `tf.math`
    
        * `tf.nn.top_k` now supports specifying the output index type via parameter `index_type`.  Supported types are `tf.int16`, `tf.int32` (default), and `tf.int64`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	//    The constant must be less than podEvictionTimeout.
    	// 2. nodeStatusUpdateFrequency needs to be large enough for kubelet to generate node
    	//    status. Kubelet may fail to update node status reliably if the value is too small,
    	//    as it takes time to gather all necessary node information.
    	nodeStatusUpdateFrequency time.Duration
    
    	// nodeStatusReportFrequency is the frequency that kubelet posts node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(BuiltinOperator_FULLY_CONNECTED));
      ASSERT_THAT(model_.operator_codes[0]->version, Eq(11));
    
      // Check the scale value. The scale value will be smaller than the int8 scale
      // since the scale is calculated by dividing by 2^bit_num.
      const int32_t target_input_index = op->inputs[0];
      const QuantizationParameters* float_input_quant_params =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    * ✏ Fix a small code highlight line error. PR [#5256](https://github.com/tiangolo/fastapi/pull/5256) by [@hjlarry](https://github.com/hjlarry).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEntityTooSmall: {
    		Code:           "EntityTooSmall",
    		Description:    "Your proposed upload is smaller than the minimum allowed object size.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrEntityTooLarge: {
    		Code:           "EntityTooLarge",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	// by module path, so that we only revisit a given pathSet when the
    	// version of some module in its containingPackage list has been determined.
    	//
    	// However, N tends to be small, and most candidate sets will include only one
    	// candidate module (so they will be resolved in the first iteration), so for
    	// now we'll stick to the simple O(N²) approach.
    
    	resolved := 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		for {
    			n, typ, offset := csiter.Next()
    			if n == nil {
    				break
    			}
    
    			ptr := s.newValue1I(ssa.OpOffPtr, types.NewPtr(typ), offset, clo)
    
    			// If n is a small variable captured by value, promote
    			// it to PAUTO so it can be converted to SSA.
    			//
    			// Note: While we never capture a variable by value if
    			// the user took its address, we may have generated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CreateUser - create new user credentials and policy, if user already exists
    // they shall be rewritten with new inputs.
    func (sys *IAMSys) CreateUser(ctx context.Context, accessKey string, ureq madmin.AddOrUpdateUserReq) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
          Creates VarHandleOps right next to the operations that use them, one
          per operation.
          This is useful for transformations that only end up with a few small
          snippets of remaining TF code, and wish for those snippets to be
          self-contained.
          For example, this would transform
    
          "tf_saved_model.global_tensor"() { sym_name = "v" ... }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // Second, if you are compiling a Go program not in a work space,
    // you can use a relative path in an import statement in that program
    // to refer to nearby code also not in a work space.
    // This makes it easy to experiment with small multipackage programs
    // outside of the usual work spaces, but such programs cannot be
    // installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top