Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for boxes (0.04 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Shows details of frame that is under the mouse */
    #current-details {
      position: absolute;
      top: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/image_grad_test.cc

          data_flat(i) = T(i);
        }
        return data;
      }
    
      template <typename T>
      void MakeOp(const Tensor& x_data, const Input& boxes, const Input& box_ind,
                  const Input& crop_size, Output* x, Output* y) {
        *x = Const<T>(scope_, x_data);
        *y = CropAndResize(scope_, *x, boxes, box_ind, crop_size,
                           CropAndResize::Method("bilinear"));
        TF_ASSERT_OK(scope_.status());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  3. src/crypto/des/const.go

    	41, 50, 35, 46, 33, 37, 44, 52,
    	30, 48, 40, 49, 29, 36, 43, 54,
    	15, 4, 25, 19, 9, 1, 26, 16,
    	5, 11, 23, 8, 12, 7, 17, 0,
    	22, 3, 10, 14, 6, 20, 27, 24,
    }
    
    // 8 S-boxes composed of 4 rows and 16 columns
    // Used in the DES cipher function
    var sBoxes = [8][4][16]uint8{
    	// S-box 1
    	{
    		{14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7},
    		{0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

    }
    
    }  // namespace
    
    void ConvertNMSPaddedFunc::RewriteFunc() {
      func_->setAttr(kTFImplements,
                     StringAttr::get(func_.getContext(), kTfNMSPadded));
      Value boxes = func_.getArgument(0);
      Value scores = func_.getArgument(1);
      Value max_output_size = func_.getArgument(2);
      Value iou_threshold = func_.getArgument(3);
      Value score_threshold = func_.getArgument(4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/README.md

    ```
    
    where the `[*]` represents a routing decision, and all of the boxes except in the top row
    represent netfilter hooks. More detailed versions of this diagram can be seen at
    https://en.wikipedia.org/wiki/Netfilter#/media/File:Netfilter-packet-flow.svg and
    https://wiki.nftables.org/wiki-nftables/index.php/Netfilter_hooks but note that in the the
    standard version of this diagram, the top two boxes are squished together into "local
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      let matches = new Set();  // Indices of sources that match search
      let elems = new Map();    // Mapping from source index to display elements
      let displayList = [];     // List of boxes to display.
      let actionMenuOn = false; // Is action menu visible?
      let actionTarget = null;  // Box on which action menu is operating.
      let diff = false;         // Are we displaying a diff?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeNonMaxSuppressionV4 : Pat<
      (TF_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold, $pad_to_max_output_size),
      (TFL_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold)>;
    
    def LegalizeNonMaxSuppressionV5 : Pat<
      (TF_NonMaxSuppressionV5Op $boxes, $scores, $max_output_size, $iou_threshold,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      TFL_OperandHasRank<4, 0>]> {
      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    pruning away boxes that have high intersection-over-union (IOU) overlap
    with previously selected boxes.  Bounding boxes with score less than
    `score_threshold` are removed.  Bounding boxes are supplied as
    [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    // data flow analysis in the future, which will enable more optimizations.
    // This could happen in two steps:
    // (1) build multiple dependency chains (one per variable), still treating
    //     function/subgraph calls as black boxes (i.e., all variables would
    //     be assumed to be read and modified within control operations)
    // (2) Extend the variable dependency analysis across function boundaries.
    class PinOpsWithSideEffectsPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        private void unbox(String boxedType, String unboxMethod, String unboxMethodDescriptor) {
            _CHECKCAST(boxedType);
            _INVOKEVIRTUAL(boxedType, unboxMethod, unboxMethodDescriptor);
        }
    
        /**
         * Boxes the value at the top of the stack, if primitive
         */
        public void _AUTOBOX(Class<?> valueClass, Type valueType) {
            if (valueClass.isPrimitive()) {
                // Box value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top