Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for result_types (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

    // Pre-actions before adding quantization logics. It creates a function with the
    // func_name where input_val is an input and result_type is a result.
    func::FuncOp PrepareFunctionRegister(PatternRewriter& rewriter, Value input_val,
                                         ShapedType result_type,
                                         StringRef func_name,
                                         Value& func_input_arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

    Attribute ConstFoldBroadcastInDim(ShapedType result_type,
                                      DenseElementsAttr operand,
                                      DenseIntElementsAttr bcast_dims) {
      auto dimensions = llvm::to_vector(bcast_dims.getValues<int64_t>());
      const auto result_shape = result_type.getShape();
      // Index for the broadcasted matrix.
      llvm::SmallVector<int64_t, 16> current_index(result_type.getRank(), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/DefaultTestResult.java

        }
    
        public DefaultTestResult(ResultType resultType, long startTime, long endTime, long testCount, long successfulCount, long failedCount, List<TestFailure> failures) {
            this.resultType = resultType;
            this.startTime = startTime;
            this.endTime = endTime;
            this.testCount = testCount;
            this.successfulCount = successfulCount;
            this.failedCount = failedCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestCompleteEvent.java

        private final TestResult.ResultType resultType;
    
        @UsedByScanPlugin("test-distribution")
        public TestCompleteEvent(long endTime) {
            this(endTime, null);
        }
    
        @UsedByScanPlugin("test-distribution")
        public TestCompleteEvent(long endTime, TestResult.ResultType resultType) {
            this.endTime = endTime;
            this.resultType = resultType;
        }
    
        public long getEndTime() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.completed(2, { it.resultType == SKIPPED })
            1 * processor.started({ it.id == 3 && it.name == "ignored" && it.className == AnIgnoredTestClass.name }, { it.parentId == 1 })
            1 * processor.completed(3, { it.resultType == SKIPPED })
            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                            TestResult.ResultType resultType = TestResult.ResultType.SUCCESS;
                            boolean failed = status.contains("failed at");
                            if (failed) {
                                resultType = TestResult.ResultType.FAILURE;
                            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestMethodResult.java

            this.displayName = displayName;
        }
    
        public TestMethodResult(long id, String name, TestResult.ResultType resultType, long duration, long endTime) {
            this(id, name, name, resultType, duration, endTime);
        }
    
        public TestMethodResult(long id, String name, String displayName, TestResult.ResultType resultType, long duration, long endTime) {
            if (id < 1) {
                throw new IllegalArgumentException("id must be > 0");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.completed(3, { it.resultType == ResultType.FAILURE })
    
            then: 1 * processor.started({ it.name == 'test' && it.className == ATestNGClassWithBrokenSetupMethod.name }, _)
            then: 1 * processor.completed(4, { it.resultType == ResultType.SKIPPED})
    
            then: 1 * processor.completed(2, { it.resultType == null})
            then: 1 * processor.completed(1, { it.resultType == null})
    
            0 * processor._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestResultSerializerTest.groovy

            readMethod1.name == 'method1'
            readMethod1.resultType == TestResult.ResultType.SUCCESS
            readMethod1.duration == 100
            readMethod1.endTime == 2300
            readMethod1.failures.empty
    
            def readMethod2 = readClass1.results[1]
            readMethod2.name == 'method2'
            readMethod2.resultType == TestResult.ResultType.FAILURE
            readMethod2.duration == 200
            readMethod2.endTime == 2700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

            shape_data.push_back(it.getSExtValue());
          }
          result_type =
              RankedTensorType::get(shape_data, input_type.getElementType());
        }
        auto values_type = RankedTensorType::get(
            result_type.getShape(),
            mlir::cast<quant::UniformQuantizedType>(result_type.getElementType())
                .getStorageType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top