Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 548 for ARM64 (0.03 sec)

  1. src/internal/fuzz/counters_unsupported.go

    // the instrumentation is OS specific, but only amd64 and arm64 are
    // supported in the runtime. See src/runtime/libfuzzer*.
    //
    // If you update this constraint, also update internal/platform.FuzzInstrumented.
    //
    //go:build !((darwin || linux || windows || freebsd) && (amd64 || arm64))
    
    package fuzz
    
    // TODO(#48504): re-enable on platforms where instrumentation works.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    // Copyright 2022 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 linux && arm64
    
    package cpu
    
    import (
    	"errors"
    	"io"
    	"os"
    	"strings"
    )
    
    func readLinuxProcCPUInfo() error {
    	f, err := os.Open("/proc/cpuinfo")
    	if err != nil {
    		return err
    	}
    	defer f.Close()
    
    	var buf [1 << 10]byte // enough for first CPU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. test/codegen/README

      func Sqrt(x float64) float64 {
      	   // amd64:"SQRTSD"
      	   // arm64:"FSQRTD"
      	   return math.Sqrt(x)
      }
    
    verifies that math.Sqrt calls are intrinsified to a SQRTSD instruction
    on amd64, and to a FSQRTD instruction on arm64.
    
    It is possible to put multiple architectures checks into the same
    line, as:
    
      // amd64:"SQRTSD" arm64:"FSQRTD"
    
    although this form should be avoided when doing so would make the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/crypto/aes/cipher_asm.go

    // the gcmAble implementation is in aes_gcm.go.
    type aesCipherGCM struct {
    	aesCipherAsm
    }
    
    var supportsAES = cpu.X86.HasAES || cpu.ARM64.HasAES || goarch.IsPpc64 == 1 || goarch.IsPpc64le == 1
    var supportsGFMUL = cpu.X86.HasPCLMULQDQ || cpu.ARM64.HasPMULL
    
    func newCipher(key []byte) (cipher.Block, error) {
    	if !supportsAES {
    		return newCipherGeneric(key)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. misc/ios/README

    	export GOIOS_TEAM_ID=ZZZZZZZZ
    
    If you have multiple devices connected, specify the device UDID with the GOIOS_DEVICE_ID
    variable. Use `idevice_id -l` to list all available UDIDs. Then, setting GOARCH to arm64
    will select the device:
    
    	GOOS=ios GOARCH=arm64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    Note that the go_darwin_$GOARCH_exec wrapper uninstalls any existing app identified by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/build-goboring.sh

    }
    
    u128 __udivti3(u128 x, u128 y) {
    	return div(x, y, 0);
    }
    EOF
    
    extra=""
    case $GOARCH in
    amd64)
    	cp umod-amd64.s umod.s
    	clang -c -o umod.o umod.s
    	extra=umod.o
    	;;
    arm64)
    	cp umod-arm64.c umod.c
    	clang -c -o umod.o umod.c
    	extra=umod.o
    	;;
    esac
    
    # Prepare copy of libcrypto.a with only the checked functions renamed and exported.
    # All other symbols are left alone and hidden.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.5.md

    [kubernetes-client-linux-amd64.tar.gz](https://dl.k8s.io/v1.5.8/kubernetes-client-linux-amd64.tar.gz) | `0baefc8e2c01bddf550764a77d6fb345df331bbc4f2f56efb036d3dd50b64562`
    [kubernetes-client-linux-arm64.tar.gz](https://dl.k8s.io/v1.5.8/kubernetes-client-linux-arm64.tar.gz) | `f0fa7369d03b330bc655f5055e8527e7211936baf3277444947e3b7c9441568e`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            then:
            result.available
            def platformSdk = result.component.forPlatform(arm64())
            platformSdk.path == [dir1.file("bin/10.0.10500.0/arm64")]
            platformSdk.resourceCompiler == dir1.file("bin/10.0.10500.0/arm64/rc.exe")
        }
    
        def "host x86 compile uses host kit for resources"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. .github/workflows/arm-cd.yml

      schedule:
        - cron: '0 8 * * *'
    
    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
    - 3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadelf/ldelf.go

    		ARM | uint32(elf.R_ARM_JUMP24)<<16,
    		ARM64 | uint32(elf.R_AARCH64_CALL26)<<16,
    		ARM64 | uint32(elf.R_AARCH64_ADR_GOT_PAGE)<<16,
    		ARM64 | uint32(elf.R_AARCH64_LD64_GOT_LO12_NC)<<16,
    		ARM64 | uint32(elf.R_AARCH64_ADR_PREL_PG_HI21)<<16,
    		ARM64 | uint32(elf.R_AARCH64_ADD_ABS_LO12_NC)<<16,
    		ARM64 | uint32(elf.R_AARCH64_LDST8_ABS_LO12_NC)<<16,
    		ARM64 | uint32(elf.R_AARCH64_LDST16_ABS_LO12_NC)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top