Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unpacked (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[UNPACK:.*]]:2 = "tf.Unpack"(%[[NEG]]) <{axis = 1 : i64}> {device = ""}
      %unpacked:2 = "tf.Unpack"(%arg0) {axis = 1 : i64, device = ""}
                    : (tensor<?x2xf32>) -> (tensor<?xf32>, tensor<?xf32>)
      %0 = "tf.Neg"(%unpacked#0): (tensor<?xf32>) -> tensor<?xf32>
      %1 = "tf.Neg"(%unpacked#1): (tensor<?xf32>) -> tensor<?xf32>
    
      // CHECK: return %[[UNPACK]]#0, %[[UNPACK]]#1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Hoist coefficient-wise unary operation out of the Unpack op:
    //
    //   %unpacked:N = "tf.Unpack"(%0)
    //   %neg0 = "tf.Neg"(%unpacked#0)
    //   %neg1 = "tf.Neg"(%unpacked#1)
    //   ...
    //   %negN-1 = "tf.Neg"(%unpacked:N-1)
    //
    // Rewrite it to:
    //
    //   %neg = "tf.Neg"(%0)
    //   %unpacked:N = "tf.Unpack"(%neg)
    class HoistCwiseUnaryOutOfUnpack : public OpRewritePattern<UnpackOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }];
    }
    
    def TFL_UnpackOp : TFL_Op<"unpack", [
        Pure,
        QuantizableResult,
        SameOperandsAndResultElementType,
        SameOperandsAndResultsScale,
        DeclareOpInterfaceMethods<InferTypeOpInterface>]> {
      let summary = "Unpacks a tensor along a dimension into multiple tensors";
    
      let description = [{
        Unpacks a given dimension of a rank-`R` tensor into `num` rank-`(R-1)` tensors.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    // The -modcache flag causes clean to remove the entire module
    // download cache, including unpacked source code of versioned
    // dependencies.
    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

         * adding {@code entry} to relevant eviction lists.
         *
         * <p>Note: this method should only be called under lock, as it directly manipulates the
         * eviction queues. Unlocked reads should use {@link #recordRead}.
         */
        @GuardedBy("this")
        void recordLockedRead(ReferenceEntry<K, V> entry, long now) {
          if (map.recordsAccess()) {
            entry.setAccessTime(now);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

         * adding {@code entry} to relevant eviction lists.
         *
         * <p>Note: this method should only be called under lock, as it directly manipulates the
         * eviction queues. Unlocked reads should use {@link #recordRead}.
         */
        @GuardedBy("this")
        void recordLockedRead(ReferenceEntry<K, V> entry, long now) {
          if (map.recordsAccess()) {
            entry.setAccessTime(now);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    //
    // A worker thread is considered spinning if it is out of local work and did
    // not find work in the global run queue or netpoller; the spinning state is
    // denoted in m.spinning and in sched.nmspinning. Threads unparked this way are
    // also considered spinning; we don't do goroutine handoff so such threads are
    // out of work initially. Spinning threads spin on looking for work in per-P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top