Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getXAxes (0.16 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                return function (event, ranges) {
                    $.each(plot.getXAxes(), function(_, axis) {
                        const opts = axis.options;
                        opts.min = reset ? null : ranges.xaxis.from;
                        opts.max = reset ? null : ranges.xaxis.to;
                    });
                    $.each(plot.getYAxes(), function(_, axis) {
                        const opts = axis.options;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    ot.getPlaceholder().trigger("plotunselected",[])}}function extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var k in axes){axis=axes[k];if(axis.direction==coord){key=coord+axis.n+"axis";if(!ranges[key]&&axis.n==1)key=coord+"axis";if(ranges[key]){from=ranges[key].from;to=ranges[key].to;break}}}if(!ranges[key]){axis=coord=="x"?plot.getXAxes()[0]:plot.getYAxes()[0];from=ranges[coord+"1"];to=ranges[coord+"2"]}if(from!=null&&to!=null&&from>to){var tmp=from;from=to;to=tmp}return...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          return failure();
        }
        auto sum_op = dyn_cast_or_null<TFL::SumOp>(log_op.getX().getDefiningOp());
        if (!sum_op || !sum_op.getKeepDims() ||
            !isSupportedAxis(
                sum_op.getAxes(),
                mlir::cast<ShapedType>(sum_op.getOperand(0).getType()).getRank())) {
          return failure();
        }
        if (!sum_op->hasOneUse()) {
          return failure();
        }
        auto exp_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        new_result_types.push_back(valid_output_type);
    
        auto nmsv4 = CreateTfOp<TF::NonMaxSuppressionV4Op>(
            rewriter, nms_op, new_result_types, nms_op.getBoxes(),
            nms_op.getScores(), nms_op.getMaxOutputSize(), nms_op.getIouThreshold(),
            nms_op.getScoreThreshold());
        // Cannot replace the NMSv3 Op with NMSv4 since the outputs between the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top