Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RB (0.12 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ASRD, r0)
    			opset(ASRDCC, r0)
    			opset(AROTL, r0)
    
    		case ASRAW: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRAWCC, r0)
    
    		case AEXTSWSLI:
    			opset(AEXTSWSLICC, r0)
    
    		case ASRAD: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRADCC, r0)
    
    		case ASUB: /* SUB Ra,Rb,Rd => subf Rd,ra,rb */
    			opset(ASUB, r0)
    
    			opset(ASUBCC, r0)
    			opset(ASUBV, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	case 47: // SWPx/LDADDx/LDCLRx/LDEORx/LDORx/CASx Rs, (Rb), Rt
    		rs := p.From.Reg
    		rt := p.RegTo2
    		rb := p.To.Reg
    
    		// rt can't be sp.
    		if rt == REG_RSP {
    			c.ctxt.Diag("illegal destination register: %v\n", p)
    		}
    
    		o1 = atomicLDADD[p.As] | atomicSWP[p.As]
    		o1 |= uint32(rs&31)<<16 | uint32(rb&31)<<5 | uint32(rt&31)
    
    	case 48: /* ADD $C_ADDCON2, Rm, Rd */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          quant_unit_file_path = os.path.join(log_dir_path, folder, 'quant_unit.pb')
    
          quant_unit = (
              quant_opts_pb2.UnitWiseQuantizationSpec.QuantizationUnit.FromString(
                  open(quant_unit_file_path, 'rb').read()
              )
          )
    
          self.assertEqual(quant_unit.node_name, 'Conv2D')
          self.assertRegex(quant_unit.func_name, r'^__inference_conv_\d+')
    
      @parameterized.parameters(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top