Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for LOGICAL (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/tracestack.go

    // pcBuf and dst should not overlap.
    //
    // fpunwindExpand checks if pcBuf contains logical frames (which include inlined
    // frames) or physical frames (produced by frame pointer unwinding) using a
    // sentinel value in pcBuf[0]. Logical frames are simply returned without the
    // sentinel. Physical frames are turned into logical frames via inline unwinding
    // and by applying the skip value that's stored in pcBuf[0].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. internal/bucket/lifecycle/and.go

    		a.ObjectSizeGreaterThan == 0 && a.ObjectSizeLessThan == 0
    }
    
    // Validate - validates the And field
    func (a And) Validate() error {
    	// > This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates.
    	// ref: https://docs.aws.amazon.com/AmazonS3/latest/API/API_LifecycleRuleAndOperator.html
    	// i.e, predCount >= 2
    	var predCount int
    	if a.Prefix.set {
    		predCount++
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/lowering_passes.td

    def InputLoweringMetricsPass : Pass<"input-lowering-metrics-pass", "mlir::func::FuncOp"> {
    
      let summary = "Collects various metrics about the input to the lowering "
                    "portion of the bridge. This is a logical no-op.";
    
      let description = [{
        Gathers metrics about the input MLIR to Phase 2 of the TFXLA Bridge, which
        does a strict semantic lowering from Tensorflow ops to XLA HLO.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 19:49:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemDiagnosticsFactory.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface ProblemDiagnosticsFactory {
        /**
         * Creates a new stream of problems. Each problem stream produces diagnostics for some logical set of problems, applying limits to
         * the number of stack traces captured. Each stream has its own limits.
         */
        ProblemStream newStream();
    
        /**
         * Creates a new stream of problems without any limits.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            Writer destination = new StringWriter()
    
            when:
            generator.generateScript(details, destination)
    
            then:
            destination.toString().contains(/set DEFAULT_JVM_OPTS="-Dfoo=b\"ar baz" "-Xi\"\"nt" "-Xpatho\\\"logical"/)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

          old_parallel_execute, new_parallel_execute);
    
      // Extract inputs for each block of the parallel_execute op. The i-th
      // element in the list represents the input lists to TPU computation for
      // i-th logical core.
      llvm::SmallVector<llvm::SmallVector<mlir::Value, 4>, 4> input_list;
      builder->setInsertionPoint(*new_parallel_execute);
      auto result = tensorflow::ExtractInputsForLogicalDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top