Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for POPCNT (0.19 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*6467*/ uint16(xCondPrefix), 1,
    	0xF3, 6471,
    	/*6471*/ uint16(xCondDataSize), 6475, 6481, 0,
    	/*6475*/ uint16(xSetOp), uint16(POPCNT),
    	/*6477*/ uint16(xReadSlashR),
    	/*6478*/ uint16(xArgR16),
    	/*6479*/ uint16(xArgRM16),
    	/*6480*/ uint16(xMatch),
    	/*6481*/ uint16(xSetOp), uint16(POPCNT),
    	/*6483*/ uint16(xReadSlashR),
    	/*6484*/ uint16(xArgR32),
    	/*6485*/ uint16(xArgRM32),
    	/*6486*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    	}
    	return false
    }
    func rewriteValueS390X_OpPopCount16(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (PopCount16 x)
    	// result: (MOVBZreg (SumBytes2 (POPCNT <typ.UInt16> x)))
    	for {
    		x := v_0
    		v.reset(OpS390XMOVBZreg)
    		v0 := b.NewValue0(v.Pos, OpS390XSumBytes2, typ.UInt8)
    		v1 := b.NewValue0(v.Pos, OpS390XPOPCNT, typ.UInt16)
    		v1.AddArg(x)
    		v0.AddArg(v1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:       return %[[RES]]
    // CHECK:         }
    func.func @convert_population_count_i32(%arg0: tensor<8xi32>) -> tensor<8xi32> {
      %0 = "mhlo.popcnt"(%arg0) : (tensor<8xi32>) -> tensor<8xi32>
      func.return %0 : tensor<8xi32>
    }
    
    // CHECK-LABEL:   func @convert_population_count_ui8(
    // CHECK-SAME:                                   %[[ARG_0:.*]]: tensor<8xui8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			bFalse := s.f.NewBlock(ssa.BlockPlain)
    			bEnd := s.f.NewBlock(ssa.BlockPlain)
    			b.AddEdgeTo(bTrue)
    			b.AddEdgeTo(bFalse)
    			b.Likely = ssa.BranchLikely // most machines have popcnt nowadays
    
    			// We have the intrinsic - use it directly.
    			s.startBlock(bTrue)
    			s.vars[n] = s.newValue1(op, types.Types[types.TINT], args[0])
    			s.endBlock().AddEdgeTo(bEnd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top