Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sle (0.06 sec)

  1. src/cmd/internal/obj/loong64/a.out.go

    	AADDW
    	AAND
    	ABEQ
    	ABGEZ
    	ABLEZ
    	ABGTZ
    	ABLTZ
    	ABFPF
    	ABFPT
    
    	ABNE
    	ABREAK
    	ACLO
    	ACLZ
    
    	ACMPEQD
    	ACMPEQF
    
    	ACMPGED // ACMPGED -> fcmp.sle.d
    	ACMPGEF // ACMPGEF -> fcmp.sle.s
    	ACMPGTD // ACMPGTD -> fcmp.slt.d
    	ACMPGTF // ACMPGTF -> fcmp.slt.s
    
    	ALU12IW
    	ALU32ID
    	ALU52ID
    	APCALAU12I
    	APCADDU12I
    	AJIRL
    	ABGE
    	ABLT
    	ABLTU
    	ABGEU
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

            mlir::APInt::getSignedMaxValue(bw).sext(min.getBitWidth());
    
        // Skips to the next bitwidth if the min and max values are out of the range
        // for the current bitwidth.
        if (min.sle(limitMin) || max.sle(limitMin) || min.sge(limitMax) ||
            max.sge(limitMax)) {
          continue;
        }
    
        for (mlir::APInt& val : values) {
          val = val.trunc(bw);
        }
        break;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/runtime/mkpreempt.go

    		}
    	}
    }
    
    func header(arch string) {
    	fmt.Fprintf(out, "// Code generated by mkpreempt.go; DO NOT EDIT.\n\n")
    	if beLe[arch] {
    		base := arch[:len(arch)-1]
    		fmt.Fprintf(out, "//go:build %s || %sle\n\n", base, base)
    	}
    	fmt.Fprintf(out, "#include \"go_asm.h\"\n")
    	if arch == "amd64" {
    		fmt.Fprintf(out, "#include \"asm_amd64.h\"\n")
    	}
    	fmt.Fprintf(out, "#include \"textflag.h\"\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    	case ACMPEQF:
    		return 0x0c1<<20 | 0x4<<15 // FCMP.CEQ.S
    	case ACMPEQD:
    		return 0x0c2<<20 | 0x4<<15 // FCMP.CEQ.D
    	case ACMPGED:
    		return 0x0c2<<20 | 0x7<<15 // FCMP.SLE.D
    	case ACMPGEF:
    		return 0x0c1<<20 | 0x7<<15 // FCMP.SLE.S
    	case ACMPGTD:
    		return 0x0c2<<20 | 0x3<<15 // FCMP.SLT.D
    	case ACMPGTF:
    		return 0x0c1<<20 | 0x3<<15 // FCMP.SLT.S
    
    	case ASQRTF:
    		return 0x4511 << 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top