Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newResult (0.08 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

            PerformanceTestJvmOptions.normalizeJvmOptions(jvmOptions)
        }
    
        abstract R newResult()
    
        R run() {
            assert !specs.empty
            assert testId
    
            Assume.assumeTrue(TestScenarioSelector.shouldRun(testId))
            TestProjects.validateTestProject(testProject)
    
            def results = newResult()
    
            try {
                runAllSpecifications(results)
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/merge_fusion_with_dequantize.cc

              req_op.getLoc(), rewriter.getF32FloatAttr(6));
          new_result = rewriter.create<mlir::stablehlo::ClampOp>(
              req_op.getLoc(), min, new_result, max);
        } else if (func_name.contains("_relu_")) {
          auto min = rewriter.create<mlir::stablehlo::ConstantOp>(
              req_op.getLoc(), rewriter.getF32FloatAttr(0));
          new_result = rewriter.create<mlir::chlo::BroadcastMaxOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/decompose_hybrid_quantization.cc

        }
    
        auto newResults = rewriter
                              .create<SrcOp>(loc, newResultTys, newOperands,
                                             op->getAttrDictionary().getValue())
                              .getOperation()
                              ->getResults();
    
        SmallVector<Value> replaceResults;
        for (int i = 0; i < newResults.size(); i++) {
          Value result = newResults[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform.cc

          auto result_type = result.getType();
    
          Value new_result = new_op->getResult(i);
          if (IsQI8Type(result_type) || IsQUI8Type(result_type)) {
            builder->setInsertionPoint(op);
            TFL::QuantizeOp quant_op = builder->create<TFL::QuantizeOp>(
                op->getLoc(), result_type, new_result, TypeAttr::get(result_type));
            new_result = quant_op.getResult();
          }
    
          // Rewire the outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top