Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for fldconv (3.23 sec)

  1. src/cmd/compile/internal/types/fmt.go

    		fieldVerb = 'S'
    	}
    	for i, param := range params {
    		if i != 0 {
    			b.WriteString(", ")
    		}
    		fldconv(b, param, fieldVerb, mode, visited, true)
    	}
    	b.WriteByte(')')
    }
    
    func fldconv(b *bytes.Buffer, f *Field, verb rune, mode fmtMode, visited map[*Type]int, isParam bool) {
    	if f == nil {
    		b.WriteString("<T>")
    		return
    	}
    
    	var name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/util.go

    )
    
    // RegisterRegisterList binds a pretty-printer (RLconv) for register list
    // numbers to a given register list number range. Lo is inclusive,
    // hi exclusive (valid register list are lo through hi-1).
    func RegisterRegisterList(lo, hi int64, rlconv func(int64) string) {
    	regListSpace = append(regListSpace, regListSet{lo, hi, rlconv})
    }
    
    func RLconv(list int64) string {
    	for i := range regListSpace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm_test.go

    		}
    		if int16(reg1) != test.reg1 {
    			t.Errorf("%s reg1 mismatch: have %d, want %d",
    				test.printed, reg1, test.reg1)
    		}
    		wantPrinted := test.printed
    		if rlconv(enc) != wantPrinted {
    			t.Errorf("%s string mismatch: have %s, want %s",
    				test.printed, rlconv(enc), wantPrinted)
    		}
    	}
    }
    
    func TestRegIndex(t *testing.T) {
    	tests := []struct {
    		regFrom int
    		regTo   int
    	}{
    		{REG_AL, REG_R15B},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/quantize-numeric-verify.mlir

      func.return %10 : tensor<?x1x1x3xf32>
    
    // MODEL-DEBUG: %[[f_conv:.*]] = "tfl.conv_2d"{{.*}}xf32
    // MODEL-DEBUG: %[[q_conv:.*]] = "tfl.conv_2d"{{.*}}x!quant
    // MODEL-DEBUG:"tfl.NumericVerify"(%[[q_conv]], %[[f_conv]])
    // MODEL-DEBUG: %[[dq0:.*]] = "tfl.dequantize"(%[[q_conv]])
    // MODEL-DEBUG: %[[f_sqrt1:.*]] = "tfl.sqrt"(%[[f_conv]]
    // MODEL-DEBUG: %[[q_sqrt1:.*]] = "tfl.sqrt"(%[[dq0]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    // CHECK: %[[quant:.*]] = "tf.Cast"(%[[round]]) : (tensor<1x3x4x3xf32>) -> tensor<1x3x4x3xi8>
    // CHECK: %[[pad:.*]] = "tf.PadV2"(%[[quant]]
    // CHECK: %[[xlaconv:.*]] = "tf.XlaConvV2"(%[[pad]]
    // CHECK: %[[sub:.*]] = "tf.Sub"(%[[xlaconv]]
    // CHECK: %[[cast:.*]] = "tf.Cast"(%[[sub]]) <{Truncate = false}> : (tensor<1x3x2x2xi32>) -> tensor<1x3x2x2xf32>
    // CHECK: %[[dequant1:.*]] = "tf.Mul"(%[[cast]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/list5.go

    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBaseARM, MAXREG, rconv)
    	obj.RegisterOpcode(obj.ABaseARM, Anames)
    	obj.RegisterRegisterList(obj.RegListARMLo, obj.RegListARMHi, rlconv)
    	obj.RegisterOpSuffix("arm", obj.CConvARM)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    		// Special case.
    		return "g"
    	}
    	if REG_R0 <= r && r <= REG_R15 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

      %b = arith.constant dense<0.0> : tensor<64xf32>
      %dconv = "tfl.depthwise_conv_2d"(%arg0, %w, %b) {depth_multiplier = 4 : i32, dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 4 : i32, stride_w = 5 : i32} : (tensor<1x224x224x3xf32>, tensor<64x3x3x3xf32>, tensor<64xf32>) -> tensor<1x112x112x64xf32>
      func.return %dconv : tensor<1x112x112x64xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/prepare-quantize-dynamic-range.mlir

      %b = arith.constant dense<0.0> : tensor<64xf32>
      %dconv = "tfl.depthwise_conv_2d"(%0, %w, %b) {depth_multiplier = 4 : i32, dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32, fused_activation_function = "NONE", padding = "VALID", stride_h = 4 : i32, stride_w = 5 : i32} : (tensor<1x224x224x3xf32>, tensor<64x3x3x3xf32>, tensor<64xf32>) -> tensor<1x112x112x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_ops_on_regular_devices.cc

    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    #define REGISTER_XLA_OPS_ON_DEVICE(DEVICE)                                     \
      REGISTER_KERNEL_BUILDER(Name("XlaConv")                                      \
                                  .HostMemory("window_strides")                    \
                                  .HostMemory("padding")                           \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 19:55:14 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/list6.go

    	obj.RegisterRegisterList(obj.RegListX86Lo, obj.RegListX86Hi, rlconv)
    	obj.RegisterOpSuffix("386", opSuffixString)
    	obj.RegisterOpSuffix("amd64", opSuffixString)
    }
    
    func rconv(r int) string {
    	if REG_AL <= r && r-REG_AL < len(Register) {
    		return Register[r-REG_AL]
    	}
    	return fmt.Sprintf("Rgok(%d)", r-obj.RBaseAMD64)
    }
    
    func rlconv(bits int64) string {
    	reg0, reg1 := decodeRegisterRange(bits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 4.1K bytes
    - Viewed (0)
Back to top