Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sc_regs (0.12 sec)

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

    	{as: ASUB, a1: C_REG, a2: C_REG, a6: C_REG, type_: 10, size: 4}, /* op r2[,r1],r3 */
    	{as: ASUB, a1: C_REG, a6: C_REG, type_: 10, size: 4},
    	{as: ASLW, a1: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: ASLW, a1: C_REG, a2: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: ASLD, a1: C_REG, a6: C_REG, type_: 6, size: 4},
    	{as: ASLD, a1: C_REG, a2: C_REG, a6: C_REG, type_: 6, size: 4},
    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/s390x/asmz.go

    	{i: 12, as: ASUB, a1: C_LOREG, a6: C_REG},
    	{i: 12, as: ASUB, a1: C_LAUTO, a6: C_REG},
    	{i: 4, as: AMULHD, a1: C_REG, a6: C_REG},
    	{i: 4, as: AMULHD, a1: C_REG, a2: C_REG, a6: C_REG},
    	{i: 62, as: AMLGR, a1: C_REG, a6: C_REG},
    	{i: 2, as: ADIVW, a1: C_REG, a2: C_REG, a6: C_REG},
    	{i: 2, as: ADIVW, a1: C_REG, a6: C_REG},
    	{i: 10, as: ASUB, a1: C_REG, a2: C_REG, a6: C_REG},
    	{i: 10, as: ASUB, a1: C_REG, a6: C_REG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework_test.go

    	}
    	return inj.ScoreRes, nil
    }
    
    func injectNormalizeRes(inj injectedResult, scores framework.NodeScoreList) *framework.Status {
    	if framework.Code(inj.NormalizeStatus) != framework.Success {
    		return framework.NewStatus(framework.Code(inj.NormalizeStatus), "injecting failure.")
    	}
    	for i := range scores {
    		scores[i].Score = inj.NormalizeRes
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    			}
    			for i := range nodesscores {
    				sort.Slice(nodesscores[i].Scores, func(j, k int) bool {
    					return nodesscores[i].Scores[j].Name < nodesscores[i].Scores[k].Name
    				})
    			}
    
    			if diff := cmp.Diff(test.want, nodesscores); diff != "" {
    				t.Errorf("returned nodes scores (-want,+got):\n%s", diff)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    using the `tf.gather operation`.  For example:
      selected_indices = tf.image.non_max_suppression_v2(
          boxes, scores, max_output_size, iou_threshold, score_threshold)
      selected_boxes = tf.gather(boxes, selected_indices)
      }];
    
      let arguments = (ins
        TFL_FpTensor:$boxes,
        TFL_FpTensor:$scores,
        TFL_I32Tensor:$max_output_size,
        TFL_FpTensor:$iou_threshold,
        TFL_FpTensor:$score_threshold
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		fc := c.aclass(&p.From)
    		tc := c.aclass(&p.To)
    		if (p.As == AFMOVD || p.As == AFMOVS) && (fc == C_REG || fc == C_ZREG || tc == C_REG || tc == C_ZREG) {
    			// FMOV Rx, Fy or FMOV Fy, Rx
    			o1 = FPCVTI(0, 0, 0, 0, 6)
    			if p.As == AFMOVD {
    				o1 |= 1<<31 | 1<<22 // 64-bit
    			}
    			if fc == C_REG || fc == C_ZREG {
    				o1 |= 1 << 16 // FMOV Rx, Fy
    			}
    		} else {
    			o1 = c.oprrr(p, p.As)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top