Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for maskstr (0.29 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

            copyAccessEntry(original, newEntry);
            copyWriteEntry(original, newEntry);
            return newEntry;
          }
        };
    
        // Masks used to compute indices in the following table.
    
        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          num_added_axis++;
        }
      }
      if (num_input_dims + num_added_axis > 5) return failure();
      return success();
    }
    
    OpFoldResult StridedSliceOp::fold(FoldAdaptor) {
      // Currently only support all masks being 0.
      if (getBeginMask() != 0 || getEndMask() != 0 || getEllipsisMask() != 0 ||
          getNewAxisMask() != 0 || getShrinkAxisMask() != 0)
        return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Output shape needs to be static to apply 'new_axis_mask' or
        // 'shrink_axis_mask' by reshaping tensor after slice.
        //
        // TODO(hinsu): Relax this constraint for ops without the above masks.
        auto result_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!result_ty || !result_ty.hasStaticShape()) return failure();
    
        DenseIntElementsAttr sparse_begin_attr, sparse_end_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// which can change underfoot once we no longer block
    	// safe-points. We don't need to snapshot the contents because
    	// everything up to cap(allp) is immutable.
    	allpSnapshot := allp
    	// Also snapshot masks. Value changes are OK, but we can't allow
    	// len to change out from under us.
    	idlepMaskSnapshot := idlepMask
    	timerpMaskSnapshot := timerpMask
    
    	// return P and block
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. CREDITS

      0. Definitions.
    
      "This License" refers to version 3 of the GNU Affero General Public License.
    
      "Copyright" also means copyright-like laws that apply to other kinds of
    works, such as semiconductor masks.
    
      "The Program" refers to any copyrightable work licensed under this
    License.  Each licensee is addressed as "you".  "Licensees" and
    "recipients" may be individuals or organizations.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  6. RELEASE.md

            [`tf.keras.layers.MultiHeadAttention`](https://www.tensorflow.org/api_docs/python/tf/keras/layers/MultiHeadAttention).
            *   Implicit masks for `query`, `key` and `value` inputs will
                automatically be used to compute a correct attention mask for the
                layer. These padding masks will be combined with any
                `attention_mask` passed in directly when calling the layer. This can
                be used with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		// In that case (handled below), we emit a bound check (and Spectre mask)
    		// and then the prove pass will remove the bounds check.
    		// In theory the prove pass could potentially remove certain
    		// Spectre masks, but it's very delicate and probably better
    		// to be conservative and leave them all in.
    		return idx
    	}
    
    	bNext := s.f.NewBlock(ssa.BlockPlain)
    	bPanic := s.f.NewBlock(ssa.BlockExit)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `end = begin + 1 = 2`. To disambiguate from the original spec `2:4` we
    also set the appropriate bit in `shrink_axis_mask`.
    
    2. `2:4` is contributes 2, 4, 1 to begin, end, and stride. All masks have
    zero bits contributed.
    
    3. None is a synonym for `tf.newaxis`. This means insert a dimension of size 1
    dimension in the final shape. Dummy values are contributed to begin,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top