Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 548 for ARM64 (0.06 sec)

  1. src/internal/runtime/atomic/atomic_arm64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build arm64
    
    package atomic
    
    import (
    	"internal/cpu"
    	"unsafe"
    )
    
    const (
    	offsetARM64HasATOMICS = unsafe.Offsetof(cpu.ARM64.HasATOMICS)
    )
    
    //go:noescape
    func Xadd(ptr *uint32, delta int32) uint32
    
    //go:noescape
    func Xadd64(ptr *uint64, delta int64) uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. .github/workflows/arm-ci-extended.yml

      schedule:
        - cron: '0 4 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. cluster/get-kube-binaries.sh

    #    * amd64 [default]
    #    * arm
    #    * arm64
    #    * ppc64le
    #    * s390x
    #
    #  Set KUBERNETES_CLIENT_OS to choose the client OS to download:
    #    * current OS [default]
    #    * linux
    #    * darwin
    #    * windows
    #
    #  Set KUBERNETES_CLIENT_ARCH to choose the client architecture to download:
    #    * current architecture [default]
    #    * amd64
    #    * arm
    #    * arm64
    #    * ppc64le
    #    * s390x
    #    * windows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/list7.go

    	spc := SpecialOperand(a)
    	if spc >= SPOP_BEGIN && spc < SPOP_END {
    		return fmt.Sprintf("%s", spc)
    	}
    	return "SPC_??"
    }
    
    func rlconv(list int64) string {
    	str := ""
    
    	// ARM64 register list follows ARM64 instruction decode schema
    	// | 31 | 30 | ... | 15 - 12 | 11 - 10 | ... |
    	// +----+----+-----+---------+---------+-----+
    	// |    | Q  | ... | opcode  |   size  | ... |
    
    	firstReg := int(list & 31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. test/intrinsic.go

    // errorcheckandrundir -0 -d=ssa/intrinsics/debug
    
    //go:build amd64 || arm64 || arm || s390x
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 270 bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    		case "linux/386", "linux/amd64", "linux/arm", "linux/arm64", "linux/loong64", "linux/ppc64le", "linux/riscv64", "linux/s390x",
    			"android/amd64", "android/arm", "android/arm64", "android/386",
    			"freebsd/amd64",
    			"darwin/amd64", "darwin/arm64",
    			"ios/amd64", "ios/arm64",
    			"aix/ppc64",
    			"openbsd/arm64",
    			"windows/386", "windows/amd64", "windows/arm", "windows/arm64":
    			return true
    		}
    		return false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_arm64_noasm.go

    // Copyright (c) 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !arm64 || purego
    
    package field
    
    func (v *Element) carryPropagate() *Element {
    	return v.carryPropagateGeneric()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 290 bytes
    - Viewed (0)
  8. src/internal/buildcfg/exp.go

    //
    // This used to be an experiment, but now it's always enabled on
    // platforms that support it.
    //
    // Note: must agree with runtime.framepointer_enabled.
    var FramePointerEnabled = GOARCH == "amd64" || GOARCH == "arm64"
    
    // ParseGOEXPERIMENT parses a (GOOS, GOARCH, GOEXPERIMENT)
    // configuration tuple and returns the enabled and baseline experiment
    // flag sets.
    //
    // TODO(mdempsky): Move to internal/goexperiment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. .github/workflows/arm-ci.yml

        if: github.repository == 'tensorflow/tensorflow' && (github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'kokoro:force-run'))
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_generic.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (!amd64 && !386 && !arm && !ppc64le && !ppc64 && !s390x && !arm64) || purego
    
    package md5
    
    const haveAsm = false
    
    func block(dig *digest, p []byte) {
    	blockGeneric(dig, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 345 bytes
    - Viewed (0)
Back to top