Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,241 for neon (0.07 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_arm.go

    		{Name: "fpa", Feature: &ARM.HasFPA},
    		{Name: "edsp", Feature: &ARM.HasEDSP},
    		{Name: "java", Feature: &ARM.HasJAVA},
    		{Name: "iwmmxt", Feature: &ARM.HasIWMMXT},
    		{Name: "crunch", Feature: &ARM.HasCRUNCH},
    		{Name: "neon", Feature: &ARM.HasNEON},
    		{Name: "idivt", Feature: &ARM.HasIDIVT},
    		{Name: "idiva", Feature: &ARM.HasIDIVA},
    		{Name: "lpae", Feature: &ARM.HasLPAE},
    		{Name: "evtstrm", Feature: &ARM.HasEVTSTRM},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/flags.cc

           "Target cpu, similar to the clang -mcpu flag.  "
           "http://clang.llvm.org/docs/CrossCompilation.html#cpu-fpu-abi"},
          {"target_features", &flags->target_features,
           "Target features, e.g. +avx2, +neon, etc."},
          {"entry_point", &flags->entry_point,
           "Name of the generated function.  If multiple generated object files "
           "will be linked into the same binary, each will need a unique entry "
           "point."},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. docs/en/data/external_links.yml

    Articles: English: - author: Stephen Siegert - Neon link: https://neon.tech/blog/deploy-a-serverless-fastapi-app-with-neon-postgres-and-aws-app-runner-at-any-scale title: Deploy a Serverless FastAPI App with Neon Postgres and AWS App Runner at any scale - author: Kurtis Pykes - NVIDIA link: https://developer.nvidia.com/blog/building-a-machine-learning-microservice-with-fastapi/ title: Building a Machine Learning Microservice with FastAPI - author: Ravgeet Dhillon - Twilio link: https://www.tw...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasIWMMXT   bool // Intel Wireless MMX technology support
    	HasCRUNCH   bool // MaverickCrunch context switching and handling
    	HasTHUMBEE  bool // Thumb EE instruction set
    	HasNEON     bool // NEON instruction set
    	HasVFPv3    bool // Vector floating point version 3 support
    	HasVFPv3D16 bool // Vector floating point version 3 D8-D15
    	HasTLS      bool // Thread local storage support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    //go:build gc && !purego
    
    #include "textflag.h"
    
    // This implementation of Poly1305 uses the vector facility (vx)
    // to process up to 2 blocks (32 bytes) per iteration using an
    // algorithm based on the one described in:
    //
    // NEON crypto, Daniel J. Bernstein & Peter Schwabe
    // https://cryptojedi.org/papers/neoncrypto-20120320.pdf
    //
    // This algorithm uses 5 26-bit limbs to represent a 130-bit
    // value. These limbs are, for the most part, zero extended and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_arm64.s

    TEXT ·p256MovCond(SB),NOSPLIT,$0
    	MOVD	res+0(FP), res_ptr
    	MOVD	a+8(FP), a_ptr
    	MOVD	b+16(FP), b_ptr
    	MOVD	cond+24(FP), R3
    
    	CMP	$0, R3
    	// Two remarks:
    	// 1) Will want to revisit NEON, when support is better
    	// 2) CSEL might not be constant time on all ARM processors
    	LDP	0*16(a_ptr), (R4, R5)
    	LDP	1*16(a_ptr), (R6, R7)
    	LDP	2*16(a_ptr), (R8, R9)
    	LDP	0*16(b_ptr), (R16, R17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. pkg/config/mesh/networks_watcher_test.go

    	doneCh := make(chan struct{}, 1)
    
    	var newN *meshconfig.MeshNetworks
    	w.AddNetworksHandler(func() {
    		newN = w.Networks()
    		close(doneCh)
    	})
    
    	// Change the file to trigger the update.
    	n.Networks["test"] = &meshconfig.Network{}
    	writeMessage(t, path, &n)
    
    	select {
    	case <-doneCh:
    		g.Expect(newN).To(Equal(&n))
    		g.Expect(w.Networks()).To(Equal(newN))
    		break
    	case <-time.After(time.Second * 5):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/iface.go

    	newN := n * 2                         // make it at most 50% full
    	newN = 1 << sys.Len64(uint64(newN-1)) // round up to a power of 2
    
    	// Allocate the new table.
    	newSize := unsafe.Sizeof(abi.TypeAssertCache{}) + uintptr(newN-1)*unsafe.Sizeof(abi.TypeAssertCacheEntry{})
    	newC := (*abi.TypeAssertCache)(mallocgc(newSize, nil, true))
    	newC.Mask = uintptr(newN - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/anames5.go

    package arm
    
    var cnames5 = []string{
    	"NONE",
    	"REG",
    	"REGREG",
    	"REGREG2",
    	"REGLIST",
    	"SHIFT",
    	"SHIFTADDR",
    	"FREG",
    	"PSR",
    	"FCR",
    	"SPR",
    	"RCON",
    	"NCON",
    	"RCON2A",
    	"RCON2S",
    	"SCON",
    	"LCON",
    	"LCONADDR",
    	"ZFCON",
    	"SFCON",
    	"LFCON",
    	"RACON",
    	"LACON",
    	"SBRA",
    	"LBRA",
    	"HAUTO",
    	"FAUTO",
    	"HFAUTO",
    	"SAUTO",
    	"LAUTO",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 19:54:44 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RegularImmutableMap.java

       * @param newN the expected number of entries once duplicates are removed
       * @param duplicates a map of canonical {@link Entry} objects for each duplicate key. This map
       *     will be updated by the method, setting each value to false as soon as the {@link Entry} has
       *     been included in the new entry array.
       * @return an array of {@code newN} entries where no key appears more than once.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top