Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 373 for genResult (0.2 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestFinishEvent.java

    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a test having finished its execution. You can query the result of the
     * test using {@link #getResult()}.
     *
     * @since 2.4
     */
    public interface TestFinishEvent extends TestProgressEvent, FinishEvent {
    
        /**
         * Returns the result of the finished test operation. Currently, the result will be one of the following
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractor.java

                if (extractionContext.hasProblems()) {
                    throw new InvalidManagedModelElementTypeException(extractionContext);
                }
                if (extractionContext.getResult() != null) {
                    cache.set(type, extractionContext.getResult());
                    return;
                }
            }
    
            // Should never get here, the last strategy should be a catch all
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/trace/SerializedOperationFinish.java

            this.id = descriptor.getId().getId();
            this.endTime = finishEvent.getEndTime();
            this.result = toSerializableModel(finishEvent.getResult());
            this.resultClassName = result == null ? null : finishEvent.getResult().getClass().getName();
            this.failureMsg = finishEvent.getFailure() == null ? null : finishEvent.getFailure().toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_op_order.cc

          llvm_unreachable("unhandled element type");
        }
    
        passthrough_op->getResult(0).setType(new_output_type);
        passthrough_op->setOperand(operand_index, dequantize_op.getInput());
    
        // Set the input of the dequantize to the result of the passthrough op.
        // And switch the order of the ops.
        dequantize_op->setOperand(0, passthrough_op->getResult(0));
        dequantize_op->moveAfter(passthrough_op);
        return success();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/variables_utils.cc

      ShapedType type;
      if (llvm::isa<TF::ReadVariableOp>(op)) {
        type = op->getResult(0).getType().cast<ShapedType>();
      } else if (llvm::isa<TF::AssignVariableOp>(op)) {
        type = op->getOperand(1).getType().cast<ShapedType>();
      } else if (llvm::isa<TF::VarHandleOp>(op)) {
        type = op->getResult(0)
                   .getType()
                   .cast<ShapedType>()
                   .getElementType()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 19:32:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

      // Verify the quantized value by sending the result to the verifier.
      rewriter.create<VerifierT>(
          quantizing_op->getLoc(), quantized_op->getResult(result_idx).getType(),
          quantized_op->getResult(result_idx), quantizing_op->getResult(result_idx),
          tolerance, log);
    }
    
    template <>
    inline bool UsedBy<void>(Operation* op) {
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

          /*asym_quant_input*/ false_attr);
      if (result_type.hasStaticShape()) {
        auto reshaped =
            rewriter.create<mhlo::ReshapeOp>(loc, result_type, matmul.getResult());
        return reshaped.getResult();
      }
    
      // Reshape for dynamic shaped operands. The result shape is
      // [lhs_batch_dimensions, lhs_out_dimensions, rhs_out_dimensions].
      auto lhs_shape = rewriter.create<TFL::ShapeOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityCacheStep.java

            if (cacheResult != null) {
                emitExecuteDeferredProgressDetails(work, context.getIdentity(), cacheResult);
                return Deferrable.completed(cacheResult.getResult());
            } else {
                return Deferrable.deferred(() -> {
                    IdentityCacheResult<T> maybeExecutedResult = cache.get(
                        identity,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:30:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

            preceding_sc_op.getResult());
    
        // Create a new AvgPool op with float type.
        TF::AvgPoolOp float_avg_pool_op = rewriter.create<TF::AvgPoolOp>(
            avg_pool_op->getLoc(),
            avg_pool_op.getType().clone(rewriter.getF32Type()),
            /*operands=*/fcast_op.getResult(),
            /*attributes=*/avg_pool_op->getAttrs());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

                                               QuantizedType quant_type) {
      DenseFPElementsAttr attr;
      if (!matchPattern(op->getResult(0), m_Constant(&attr))) {
        return nullptr;
      }
      Type expressed_type = op.getResult().getType();
      Type quantized_type = quant_type.castFromExpressedType(expressed_type);
      ShapedType shaped_quantized_type = mlir::cast<ShapedType>(quantized_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top