Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 103 for result_types (0.15 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

            private final Serializer<TestResult.ResultType> typeSerializer = new NullableSerializer<TestResult.ResultType>(new BaseSerializerFactory().getSerializerFor(TestResult.ResultType.class));
    
            @Override
            public TestCompleteEvent read(Decoder decoder) throws Exception {
                long endTime = decoder.readLong();
                TestResult.ResultType result = typeSerializer.read(decoder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

            mlir::cast<TypeAttr>(cast_op.getInputElementType()).getValue();
        if (result_elt_type != original_input_type) {
          UnrankedTensorType result_type = UnrankedTensorType::get(result_elt_type);
          return rewriter.create<TF::CastOp>(loc, result_type, cast_op.getArg());
        }
        return cast_op.getArg();
      }
    
      // For variadic operands, we have to enforce them to use the same types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                                PatternRewriter &rewriter, Location loc,
                                Type result_type, Value input, Value filter,
                                Value bias) const {
        filter = legalizeFilter(rewriter, loc, filter);
        return rewriter.create<TFL::Conv2DOp>(
            loc, result_type, input, filter, bias,
            /*dilation_h_factor=*/state->dilation_height_factor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/internal/operations/BuildOperationTypes.java

        public static <D, R, T extends BuildOperationType<D, R>> Class<D> detailsType(Class<T> type) {
            return uncheckedCast(extract(type, 0));
        }
    
        public static <D, R, T extends BuildOperationType<D, R>> Class<R> resultType(Class<T> type) {
            return uncheckedCast(extract(type, 1));
        }
    
        private static <T extends BuildOperationType<?, ?>> Class<?> extract(Class<T> type, int index) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorTest.groovy

            if (failureCause) {
                assert op.result == null
                assert op.failure instanceof ProjectConfigurationException
                assert op.failure.message == "A problem occurred configuring <project>."
                assert op.failure.cause.is(failureCause)
            } else {
                assert resultType.isInstance(op.result)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

          rewriter.setInsertionPointToStart(&cloned_func.getBody().front());
          auto result_type =
              RankedTensorType::get({3}, rewriter.getType<TF::StringType>());
          auto dynamic_key =
              rewriter.create<TF::_XlaCompileMlirPlaceholderProgramKeyOp>(
                  func.getLoc(), /*program=*/result_type, llvm::ArrayRef<Value>{});
    
          auto recv_at_host = rewriter.create<TF::_XlaRecvAtHostOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                    final TestMethodResult lastExecution = groupedExecution.get(groupedExecution.size() - 1);
                    final boolean allFailed = lastExecution.getResultType() == TestResult.ResultType.FAILURE;
    
                    // https://maven.apache.org/components/surefire/maven-surefire-plugin/examples/rerun-failing-tests.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto matmul = rewriter.create<TF::BatchMatMulV3Op>(
          loc, RankedTensorType::get(matmul_shape, result_type.getElementType()),
          lhs_flattend, rhs_flattend);
    
      if (result_type.hasStaticShape()) {
        auto reshaped =
            rewriter.create<mhlo::ReshapeOp>(loc, result_type, matmul.getResult());
        return reshaped.getResult();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

                                    /*type=*/xla::ChannelHandle::DEVICE_TO_DEVICE);
    }
    
    LogicalResult ConvertAllReduce(OpBuilder& builder, int64_t channel_id,
                                   TensorType result_type,
                                   DenseIntElementsAttr replica_groups,
                                   StringRef mode, Value input, StringRef merge_op,
                                   StringRef final_op, Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

    import static org.gradle.api.tasks.testing.TestOutputEvent.Destination.StdOut
    import static org.gradle.api.tasks.testing.TestResult.ResultType.FAILURE
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SUCCESS
    import static org.hamcrest.CoreMatchers.equalTo
    
    class JUnitXmlResultWriterSpec extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top