Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for LOGICAL (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

            devices) {
      int64_t num_replicas = replicate.getN();
      assert(new_inputs.size() == num_replicas);
    
      // As model parallelism is not yet supported, we assume that all ops are
      // placed in logical core 0.
      // TODO(b/148913020): Remove this constraint once model parallelism is
      // supported.
      assert(devices.find(tensorflow::GetDeviceAliasForLogicalCore(0))
                 ->getSecond()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def TPUShardingIdentificationPass : Pass<"tf-tpu-sharding-identification", "ModuleOp"> {
      let summary = "Identifies and handles inputs/outputs of TPU computation that is "
               "sharded across logical cores.";
      let constructor = "tensorflow::tf2xla::internal::CreateTPUShardingIdentificationPass()";
      let description = [{
        Bubbles up sharding configuration from `cluster_func` regions into
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    In Go asm, the last operand (right) is the target operand, but with PPC64 asm,
    the first operand (left) is the target. The order of the remaining operands is
    not consistent: in general opcodes with 3 operands that perform math or logical
    operations have their operands in reverse order. Opcodes for vector instructions
    and those with more than 3 operands usually have operands in the same order except
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableTable.java

      public final V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Serialized type for all ImmutableTable instances. It captures the logical contents and
       * preserves iteration order of all views.
       */
      static final class SerializedForm implements Serializable {
        private final Object[] rowKeys;
        private final Object[] columnKeys;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/image/gif/writer.go

    	}
    	e.err = e.w.WriteByte(b)
    }
    
    func (e *encoder) writeHeader() {
    	if e.err != nil {
    		return
    	}
    	_, e.err = io.WriteString(e.w, "GIF89a")
    	if e.err != nil {
    		return
    	}
    
    	// Logical screen width and height.
    	byteorder.LePutUint16(e.buf[0:2], uint16(e.g.Config.Width))
    	byteorder.LePutUint16(e.buf[2:4], uint16(e.g.Config.Height))
    	e.write(e.buf[:4])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/runtime/mspanset.go

    	spineCap  uintptr                   // Spine array cap, accessed under spineLock
    
    	// index is the head and tail of the spanSet in a single field.
    	// The head and the tail both represent an index into the logical
    	// concatenation of all blocks, with the head always behind or
    	// equal to the tail (indicating an empty set). This field is
    	// always accessed atomically.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

     * all threads. Note, however, that it does not guarantee fairness.
     *
     * <p>Rate limiters are often used to restrict the rate at which some physical or logical resource
     * is accessed. This is in contrast to {@link java.util.concurrent.Semaphore} which restricts the
     * number of concurrent accesses instead of the rate (note though that concurrency and rate are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSet.java

      }
    
      /*
       * This class is used to serialize all ImmutableSet instances, except for
       * ImmutableEnumSet/ImmutableSortedSet, regardless of implementation type. It
       * captures their "logical contents" and they are reconstructed using public
       * static factories. This is necessary to ensure that the existence of a
       * particular implementation type is an implementation detail.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *
     *  @param bValue        Value of the assertion (CU_TRUE or CU_FALSE).
     *  @param uiLine        Line number of failed test statement.
     *  @param strCondition  String containing logical test that failed.
     *  @param strFile       Source file where test statement failed.
     *  @param strFunction   Function where test statement failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

    import okhttp3.internal.toHeaderList
    import okio.AsyncTimeout
    import okio.Buffer
    import okio.BufferedSource
    import okio.Sink
    import okio.Source
    import okio.Timeout
    
    /** A logical bidirectional stream. */
    @Suppress("NAME_SHADOWING")
    class Http2Stream internal constructor(
      val id: Int,
      val connection: Http2Connection,
      outFinished: Boolean,
      inFinished: Boolean,
      headers: Headers?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top