Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for LOGICAL (0.1 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/logical.mlir

    Meghna Natraj <******@****.***> 1657816346 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSetAntBuilderDelegate.java

        }
    
        public static Object and(Object node, Action<Object> withNode) {
            return logical(node, "and", withNode);
        }
    
        private static Object or(Object node, Action<Object> withNode) {
            return logical(node, "or", withNode);
        }
    
        private static Object not(Object node, Action<Object> withNode) {
            return logical(node, "not", withNode);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:48 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/lif/link.go

    	"unsafe"
    )
    
    // A Link represents logical data link information.
    //
    // It also represents base information for logical network interface.
    // On Solaris, each logical network interface represents network layer
    // adjacency information and the interface has a only single network
    // address or address pair for tunneling. It's usual that multiple
    // logical network interfaces share the same logical data link.
    type Link struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/topology/topology.go

    // CPUTopology contains details of node cpu, where :
    // CPU  - logical CPU, cadvisor - thread
    // Core - physical CPU, cadvisor - Core
    // Socket - socket, cadvisor - Socket
    // NUMA Node - NUMA cell, cadvisor - Node
    type CPUTopology struct {
    	NumCPUs      int
    	NumCores     int
    	NumSockets   int
    	NumNUMANodes int
    	CPUDetails   CPUDetails
    }
    
    // CPUsPerCore returns the number of logical CPUs are associated with
    // each core.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

    // Parses "input_sharding_configuration" attribute and returns a list where i-th
    // element is a list of mlir::Value's which represent inputs for the TPU
    // computation corresponding to i-th logical device. If the attribute does not
    // exist, the all inputs are placed on logical core 0.
    mlir::LogicalResult ExtractInputsForLogicalDevices(
        int num_cores_per_replica, mlir::tf_device::ClusterFuncOp cluster_func,
        mlir::OpBuilder* builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/http.go

    </ul>
    {{end}}
    {{end}}
    <p>
      This view displays a series of timelines for a type of resource.
      The "by proc" view consists of a timeline for each of the GOMAXPROCS
      logical processors, showing which goroutine (if any) was running on that
      logical processor at each moment.
      The "by thread" view (if available) consists of a similar timeline for each
      OS thread.
    
      Each goroutine has an identifying number (e.g. G123), main function,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/asmz.go

    	op_ALGF    uint32 = 0xE31A // FORMAT_RXY1       ADD LOGICAL (64<-32)
    	op_ALGFI   uint32 = 0xC20A // FORMAT_RIL1       ADD LOGICAL IMMEDIATE (64<-32)
    	op_ALGFR   uint32 = 0xB91A // FORMAT_RRE        ADD LOGICAL (64<-32)
    	op_ALGHSIK uint32 = 0xECDB // FORMAT_RIE4       ADD LOGICAL WITH SIGNED IMMEDIATE (64<-16)
    	op_ALGR    uint32 = 0xB90A // FORMAT_RRE        ADD LOGICAL (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact_test.go

    	}
    }
    
    // TestCompactConflict tests that two compactors (Let's use C1, C2) are trying to compact etcd cluster with the same
    // logical time.
    // - C1 compacts first. It will succeed.
    // - C2 compacts after. It will fail. But it will get latest logical time, which should be larger by one.
    func TestCompactConflict(t *testing.T) {
    	client := testserver.RunEtcd(t, nil)
    	ctx := context.Background()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 14:22:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      // logical core by default.
      if (!sharding_attrs) {
        (*input_list)[0] = cluster_func_inputs;
        return mlir::success();
      }
    
      // Enumerate sharding configuration for each inputs. If input has replicate
      // sharding then all logical devices take the value as input. If input has
      // maximal sharding then only the specified logical device take the value as
      // the input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

        llvm::ArrayRef<int64_t> device_assignment_attr);
    
    // Virtual device name of the passed logical core. The logical core is the index
    // of a core within a replica.
    std::string GetDeviceAliasForLogicalCore(int core_index);
    
    // Virtual device name of the host that is associated with the passed logical
    // core. The logical core is the index of a core within a replica.
    std::string GetDeviceAliasForHostOfLogicalCore(int core_index);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top