Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for map_64 (0.1 sec)

  1. src/cmd/go/alldocs.go

    //     correspond to the mips.hardfloat and mips.softfloat
    //     (or mipsle.hardfloat and mipsle.softfloat) feature build tags.
    //   - For GOARCH=mips64 or mips64le,
    //     GOMIPS64=hardfloat and softfloat
    //     correspond to the mips64.hardfloat and mips64.softfloat
    //     (or mips64le.hardfloat and mips64le.softfloat) feature build tags.
    //   - For GOARCH=ppc64 or ppc64le,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // CHECK-DAG:       [[VAL_63:%.*]] = arith.constant dense<[2, 0]> : tensor<2xi64>
    // CHECK-DAG:       [[VAL_64:%.*]] = arith.constant dense<[1, 0]> : tensor<2xi64>
    // CHECK:           [[VAL_65:%.*]] = "tf.Slice"([[VAL_53]], [[VAL_63]], [[VAL_64]]) : (tensor<4x3xf32>, tensor<2xi64>, tensor<2xi64>) -> tensor<1x0xf32>
    // CHECK-DAG:       [[VAL_66:%.*]] = arith.constant dense<[3, 0]> : tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		if cfg.Goos == "darwin" {
    			return []string{"-arch", "arm64"}
    		}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390x":
    		return []string{"-m64", "-march=z196"}
    	case "mips64", "mips64le":
    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    			return append(args, "-mhard-float")
    		} else if cfg.GOMIPS64 == "softfloat" {
    			return append(args, "-msoft-float")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    // mStackIsSystemAllocated indicates whether this runtime starts on a
    // system-allocated stack.
    func mStackIsSystemAllocated() bool {
    	switch GOOS {
    	case "aix", "darwin", "plan9", "illumos", "ios", "solaris", "windows":
    		return true
    	case "openbsd":
    		return GOARCH != "mips64"
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. cmd/testdata/decryptObjectInfo.json.zst

    Key":"IAAfAMCiQlmFA2Qc9++3Z6rwOWTt8Jze5t4Y4nN/zqZMGUdu1Xg58hdYUcdf==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/link/internal/mips64/obj.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"kVMcON4LzqhC37NLBwDW=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAMWfPlw8sqtf8o4R/mfL35...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    // Code generated from _gen/MIPS64.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "cmd/compile/internal/types"
    
    func rewriteValueMIPS64(v *Value) bool {
    	switch v.Op {
    	case OpAbs:
    		v.Op = OpMIPS64ABSD
    		return true
    	case OpAdd16:
    		v.Op = OpMIPS64ADDV
    		return true
    	case OpAdd32:
    		v.Op = OpMIPS64ADDV
    		return true
    	case OpAdd32F:
    		v.Op = OpMIPS64ADDF
    		return true
    	case OpAdd64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top