Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 739 for Tresults (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

                             llvm::ArrayRef<IslandResult> results) {
      // Collect types from results.
      llvm::SmallVector<Type, 8> result_types;
      result_types.reserve(results.size());
      for (const auto& result : results)
        result_types.push_back(result.inner_op_result.getType());
    
      // IslandOps always have a control result.
      result_types.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let results = (outs Variadic<AnyType>:$outputs);
      let regions = (region SizedRegion<1>:$body);
      let hasVerifier = 1;
    }
    
    def Quantization_ReturnOp : Quantization_Op<"return", [Terminator]> {
      let summary = [{
        The `return` operation terminates a quantize region and returns values.
      }];
    
      let arguments = (ins Variadic<AnyTensor>:$results);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt

        val failures = ArrayList<Exception>(2)
        val results = ArrayList<InetAddress>(5)
    
        buildRequest(hostname, networkRequests, results, failures, DnsRecordCodec.TYPE_A)
    
        if (includeIPv6) {
          buildRequest(hostname, networkRequests, results, failures, DnsRecordCodec.TYPE_AAAA)
        }
    
        executeRequests(hostname, networkRequests, results, failures)
    
        return results.ifEmpty {
          throwBestFailure(hostname, failures)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

                                                 MLIRContext *context) {
      results.add<GetTensorShape>(context);
    }
    
    void GetElementOp::getCanonicalizationPatterns(RewritePatternSet &results,
                                                   MLIRContext *context) {
      results.add<RemoveRedundantGetElement>(context);
    }
    
    void GetLengthOp::getCanonicalizationPatterns(RewritePatternSet &results,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

     */
    
    package org.gradle.performance.results.report;
    
    import org.gradle.performance.measure.DataSeries;
    import org.gradle.performance.measure.Duration;
    import org.gradle.performance.results.FormatSupport;
    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceReportScenarioHistoryExecution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    Lastly, we add a `testReport` task that aggregates the test results from the `testResultsDirs` property, which contains all of the binary test results resolved from the `testReportData` configuration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

                    void beforeTest(TestDescriptor test) { println "START Test Case [\$test.className] [\$test.name]" }
                    void afterTest(TestDescriptor test, TestResult result) { println "FINISH Test Case [\$test.className] [\$test.name] [\$result.resultType] [\$result.testCount]" }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        result.location = wrapped_op->getLoc();
      } else if (parser.parseRegion(body)) {
        return failure();
      }
    
      IslandOp::ensureTerminator(body, parser.getBuilder(), result.location);
    
      // Get the results type for the island from the terminator operands.
      Operation &yield = body.back().back();
      result.types.reserve(yield.getNumOperands() + 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            BuildCancellationToken buildCancellationToken = new InternalCancellationTokenAdapter(cancellationToken);
            Object results = connection.run(action, buildCancellationToken, providerParameters);
            return new ProviderBuildResult<>(Cast.uncheckedNonnullCast(results));
        }
    
        /**
         * This is used by consumers 4.4 and later
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      }
    }
    
    // Finds ops in the paths from arguments to results. The ops is listed in an
    // order that the former ops shouldn't have any dependencies on the later ones.
    SmallVector<Operation*> FindOpsFromArgumentsToResults(
        const ArrayRef<Value> arguments, const ArrayRef<Value> results) {
      std::queue<Value> value_queue;
      for (Value result : results) {
        value_queue.push(result);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top