Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 318 for nums (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      std::vector<int32_t> out_transpose;
      lhs_transpose.reserve(dnums.lhs_rhs_out.size() + dnums.lhs_out.size() +
                            dnums.lhs_rhs.size());
      rhs_transpose.reserve(dnums.lhs_rhs_out.size() + dnums.rhs_out.size() +
                            dnums.lhs_rhs.size());
      out_transpose.reserve(dnums.lhs_rhs_out.size() + dnums.lhs_out.size() +
                            dnums.rhs_out.size());
      // Generate transpose matrix for B0,...,Bn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		},
    		{
    			"dual socket, multi numa per socket, HT, 3 NUMA node free",
    			topoDualSocketMultiNumaPerSocketHT,
    			mustParseCPUSet(t, "1-79"),
    			[]int{1, 2, 3},
    		},
    		{
    			"dual socket, multi numa per socket, HT, 2 NUMA node free",
    			topoDualSocketMultiNumaPerSocketHT,
    			mustParseCPUSet(t, "1-9,11-79"),
    			[]int{2, 3},
    		},
    		{
    			"dual socket, multi numa per socket, HT, 1 NUMA node free",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/EnumsTest.java

        assertThat(Enums.getIfPresent(TestEnum.class, "POODLE")).hasValue(TestEnum.POODLE);
    
        assertThat(Enums.getIfPresent(TestEnum.class, "CHEETO")).isPresent();
        assertThat(Enums.getIfPresent(TestEnum.class, "HONDA")).isPresent();
        assertThat(Enums.getIfPresent(TestEnum.class, "POODLE")).isPresent();
    
        assertThat(Enums.getIfPresent(TestEnum.class, "CHEETO")).hasValue(TestEnum.CHEETO);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      }
    
      xla::DotDimensionNumbers dnums;
      for (int i : llvm::seq<int32_t>(0, num_batch_dim)) {
        dnums.add_lhs_batch_dimensions(i);
        dnums.add_rhs_batch_dimensions(i);
      }
      dnums.add_rhs_contracting_dimensions(num_batch_dim);
      if (adj_x.getValue()) {
        dnums.add_lhs_contracting_dimensions(num_batch_dim);
      } else {
        dnums.add_lhs_contracting_dimensions(num_batch_dim + 1);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    				},
    			},
    		},
    		{
    			name:          "Request 11 CPUs, 4 available on NUMA 0, 6 available on NUMA 1",
    			pod:           *testPod4,
    			container:     *testContainer4,
    			defaultCPUSet: cpuset.New(2, 3, 4, 5, 6, 7, 8, 9, 10, 11),
    			expectedHints: nil,
    		},
    		{
    			name:          "Request 2 CPUs, 1 available on NUMA 0, 1 available on NUMA 1",
    			pod:           *testPod1,
    			container:     *testContainer1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_reserved_memory.go

    			}
    
    			// validates that the limit has non-zero value
    			if q.IsZero() {
    				errors = append(errors, fmt.Errorf("invalid configuration: reserved memory may not be zero for NUMA node %d and resource %q", numaNode, resourceName))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 18 13:31:31 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/state/state.go

    	// Cells contains the current NUMA node and all other nodes that are in a group with current NUMA node
    	// This parameter indicates if the current node is used for the multiple NUMA node memory allocation
    	// For example if some container has pinning 0,1,2, NUMA nodes 0,1,2 under the state will have
    	// this parameter equals to [0, 1, 2]
    	Cells []int `json:"cells"`
    }
    
    // NUMANodeMap contains memory information for each NUMA node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy_single_numa_node.go

    type singleNumaNodePolicy struct {
    	// numaInfo represents list of NUMA Nodes available on the underlying machine and distances between them
    	numaInfo *NUMAInfo
    	opts     PolicyOptions
    }
    
    var _ Policy = &singleNumaNodePolicy{}
    
    // PolicySingleNumaNode policy name.
    const PolicySingleNumaNode string = "single-numa-node"
    
    // NewSingleNumaNodePolicy returns single-numa-node policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/policy_options.go

    	FullPhysicalCPUsOnly bool
    	// Flag to evenly distribute CPUs across NUMA nodes in cases where more
    	// than one NUMA node is required to satisfy the allocation.
    	DistributeCPUsAcrossNUMA bool
    	// Flag to ensure CPUs are considered aligned at socket boundary rather than
    	// NUMA boundary
    	AlignBySocket bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. test/goprint.go

    	go println(42, true, false, true, 1.5, "world", (chan int)(nil), []int(nil), (map[string]int)(nil), (func())(nil), byte(255))
    	for {
    		numg := runtime.NumGoroutine()
    		if numg > numg0 {
    			if time.Now().After(deadline) {
    				log.Fatalf("%d goroutines > initial %d after deadline", numg, numg0)
    			}
    			runtime.Gosched()
    			continue
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 10 19:38:06 UTC 2019
    - 722 bytes
    - Viewed (0)
Back to top