Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for numa (0.18 sec)

  1. tensorflow/c/env.cc

      options->guard_size = 0;
      options->numa_node = -1;
    }
    
    TF_Thread* TF_StartThread(const TF_ThreadOptions* options,
                              const char* thread_name, void (*work_func)(void*),
                              void* param) {
      ::tensorflow::ThreadOptions cc_options;
      cc_options.stack_size = options->stack_size;
      cc_options.guard_size = options->guard_size;
      cc_options.numa_node = options->numa_node;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 11 01:20:50 GMT 2021
    - 7K bytes
    - Viewed (0)
  2. internal/ioutil/discard.go

    package ioutil
    
    import (
    	"io"
    )
    
    // Discard is just like io.Discard without the io.ReaderFrom compatible
    // implementation which is buggy on NUMA systems, we have to use a simpler
    // io.Writer implementation alone avoids also unnecessary buffer copies,
    // and as such incurred latencies.
    var Discard io.Writer = discard{}
    
    // discard is /dev/null for Golang.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Nov 06 22:26:08 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/pt/stopwords.txt

    o
    que
    e
    do
    da
    em
    um
    para
    com
    não
    uma
    os
    no
    se
    na
    por
    mais
    as
    dos
    como
    mas
    ao
    ele
    das
    à
    seu
    sua
    ou
    quando
    muito
    nos
    já
    eu
    também
    só
    pelo
    pela
    até
    isso
    ela
    entre
    depois
    sem
    mesmo
    aos
    seus
    quem
    nas
    me
    esse
    eles
    você
    essa
    num
    nem
    suas
    meu
    às
    minha
    numa
    pelos
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/schema-extra-example.md

    Cada `dict` de exemplo específico em `examples` pode conter:
    
    * `summary`: Pequena descrição do exemplo.
    * `description`: Uma descrição longa que pode conter texto em Markdown.
    * `value`: O próprio exemplo mostrado, ex: um `dict`.
    * `externalValue`: alternativa ao `value`, uma URL apontando para o exemplo. Embora isso possa não ser suportado por tantas ferramentas quanto `value`.
    
    ```Python hl_lines="22-48"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  5. docs/pt/docs/async.md

    * conteúdo de um arquivo no disco pra ser lido pelo sistema e entregar ao seu programa
    * conteúdo que seu programa deu ao sistema para ser escrito no disco
    * uma operação remota API
    * uma operação no banco de dados para finalizar
    * uma solicitação no banco de dados esperando o retorno do resultado
    * etc.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  6. configure.py

          'mkl_aarch64',
          'Build with oneDNN and Compute Library for the Arm Architecture (ACL).')
      config_info_line('monolithic', 'Config for mostly static monolithic build.')
      config_info_line('numa', 'Build with NUMA support.')
      config_info_line(
          'dynamic_kernels',
          '(Experimental) Build kernels into separate shared objects.')
      config_info_line('v1', 'Build with TensorFlow 1 API instead of TF 2 API.')
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.23.md

    - Add a new `distribute-cpus-across-numa` option to the static `CPUManager` policy. When enabled, this will trigger the `CPUManager` to evenly distribute CPUs across NUMA nodes in cases where more than one NUMA node is required to satisfy the allocation. ([#105631](https://github.com/kubernetes/kubernetes/pull/105631), [@klueska](https://github.com/klueska))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 28 21:06:52 GMT 2023
    - 424.5K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_NTP_GETTIME ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_GETAFFINITY = 548 #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_GETAFFINITY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_SETAFFINITY = 549 #53466
    pkg syscall (freebsd-riscv64), const SYS_NUMA_SETAFFINITY ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_OBREAK = 17 #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_NTP_GETTIME ideal-int
    pkg syscall (freebsd-arm64), const SYS_NUMA_GETAFFINITY = 548
    pkg syscall (freebsd-arm64), const SYS_NUMA_GETAFFINITY ideal-int
    pkg syscall (freebsd-arm64), const SYS_NUMA_SETAFFINITY = 549
    pkg syscall (freebsd-arm64), const SYS_NUMA_SETAFFINITY ideal-int
    pkg syscall (freebsd-arm64), const SYS_OBREAK = 17
    pkg syscall (freebsd-arm64), const SYS_OBREAK ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

    - Added a `--topology-manager-policy-options` flag to the kubelet to support fine tuning the topology manager policies. The first policy option, `prefer-closest-numa-nodes`, allows these policies to favor sets of NUMA nodes with shorter distance between nodes when making admission decisions. ([#112914](https://github.com/kubernetes/kubernetes/pull/112914), [@PiotrProkop](https://github.com/PiotrProkop))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Mar 14 16:24:51 GMT 2024
    - 425.7K bytes
    - Viewed (0)
Back to top