Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 749 for intp (0.04 sec)

  1. src/internal/types/testdata/check/decls1.go

    func (x *T) m3() {}
    
    // Initialization functions
    func init() {}
    func init /* ERROR "no arguments and no return values" */ (int) {}
    func init /* ERROR "no arguments and no return values" */ () int { return 0 }
    func init /* ERROR "no arguments and no return values" */ (int) int { return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

        const bool is_signed = quant_specs_.IsSignedInferenceType();
        const int bit_width = quant_specs_.GetQuantizationTypeWidth();
    
        std::unique_ptr<OpQuantSpec> spec = GetTFOpQuantSpec(quantized_op);
        const int quant_dim = spec->coeff_op_quant_dim[weight_idx];
        const bool is_per_channel_quantization =
            enable_per_channel_quantization_ && quant_dim != -1;
    
        QuantizedType quant_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/universe.go

    // alias basic type named "byte" (and analogous for "rune").
    var Typ = [...]*Basic{
    	Invalid: {Invalid, 0, "invalid type"},
    
    	Bool:          {Bool, IsBoolean, "bool"},
    	Int:           {Int, IsInteger, "int"},
    	Int8:          {Int8, IsInteger, "int8"},
    	Int16:         {Int16, IsInteger, "int16"},
    	Int32:         {Int32, IsInteger, "int32"},
    	Int64:         {Int64, IsInteger, "int64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/go/types/universe.go

    // alias basic type named "byte" (and analogous for "rune").
    var Typ = []*Basic{
    	Invalid: {Invalid, 0, "invalid type"},
    
    	Bool:          {Bool, IsBoolean, "bool"},
    	Int:           {Int, IsInteger, "int"},
    	Int8:          {Int8, IsInteger, "int8"},
    	Int16:         {Int16, IsInteger, "int16"},
    	Int32:         {Int32, IsInteger, "int32"},
    	Int64:         {Int64, IsInteger, "int64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_per_channel.pbtxt

    # CHECK:     version: 1
    # CHECK:     builtin_code: RESHAPE
    # CHECK:   } ],
    # CHECK:   subgraphs: [ {
    # CHECK:     tensors: [ {
    # CHECK:       shape: [ 1, 1, 1, 256 ],
    # CHECK:       type: INT8,
    # CHECK:       buffer: 1,
    # CHECK:       name: "input",
    # CHECK:       quantization: {
    # CHECK:         scale: [ 0.216328 ],
    # CHECK:         zero_point: [ 27 ]
    # CHECK:       }
    # CHECK:     }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/database/sql/driver/types.go

    			return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
    		}
    		return b, nil
    	case []byte:
    		b, err := strconv.ParseBool(string(s))
    		if err != nil {
    			return nil, fmt.Errorf("sql/driver: couldn't convert %q into type bool", s)
    		}
    		return b, nil
    	}
    
    	sv := reflect.ValueOf(src)
    	switch sv.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		iv := sv.Int()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

    std::vector<Value> ConvertTFBatchMatMulOp<BatchMatMulOpType>::sliceInput(
        Value value, int batch_size, Location loc, PatternRewriter& rewriter) {
      RankedTensorType tensorType = mlir::cast<RankedTensorType>(value.getType());
      Type element_type = tensorType.getElementType();
    
      int rank = tensorType.getShape().size();
      int num_rows = tensorType.getShape()[rank - 2];
      int num_cols = tensorType.getShape()[rank - 1];
    
      std::vector<Value> sliced;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

              /*used_tensors=*/used_tensors, /*quantized=*/true);
          // If the tensor is a weight, it should have type INT8.
          // If the tensor is a bias, it should have type FLOAT32.
          // If the tensor is an input or output it should have type FLOAT32.
          // The input to dequantize should be INT8, and all other tensors should be
          // FLOAT32.
          if (i == dequant_input_idx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder_test.go

    }
    
    var ignoreTests = []ignoreTest{
    	// Decode normal struct into an empty struct
    	{&struct{ A int }{23}, &struct{}{}},
    	// Decode normal struct into a nil.
    	{&struct{ A int }{23}, nil},
    	// Decode singleton string into a nil.
    	{"hello, world", nil},
    	// Decode singleton slice into a nil.
    	{[]int{1, 2, 3, 4}, nil},
    	// Decode struct containing an interface into a nil.
    	{&Struct0{&NewType0{"value0"}}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/op.go

    }
    
    // For ABI register index r, returns the (dense) register number used in
    // SSA backend.
    func archRegForAbiReg(r abi.RegIndex, c *Config) uint8 {
    	var m int8
    	if int(r) < len(c.intParamRegs) {
    		m = c.intParamRegs[r]
    	} else {
    		m = c.floatParamRegs[int(r)-len(c.intParamRegs)]
    	}
    	return uint8(m)
    }
    
    // For ABI register index r, returns the register number used in the obj
    // package (assembler).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top