Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 752 for Tresults (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        }
    
        for (int i = 0; i < op->getNumResults(); ++i) {
          Value result = op->getResult(i);
          // If the result has been quantized, it should only be used by a
          // `quantfork::QuantizeCastOp`. For this case, we uses the quantized
          // result to create the state and mark it immutable.
          if (result.hasOneUse()) {
            Operation* user = result.use_begin().getUser();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolverResults.java

        public boolean isEmpty() {
            return results.isEmpty();
        }
    
        private static class Registration {
            private final ResolvableSelectorState selector;
            private ComponentIdResolveResult result;
    
            private Registration(ResolvableSelectorState selector, ComponentIdResolveResult result) {
                this.selector = selector;
                this.result = result;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    // captured resource typed value is used for all region results, then that value
    // is forwared to the result and the result is dropped.
    LogicalResult CanonicalizeRegionIfCaseCluster(Operation *op) {
      // Check if the same value is used for all region results for this output.
      bool has_resource_result = false;
      for (OpResult result : op->getResults()) {
        if (!IsResource(result)) continue;
        has_resource_result = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        ```
      }];
    
      let arguments = (ins
          TFR_AttrType:$lhs,
          TFR_AttrType:$rhs
      );
      let results = (outs BoolLike:$result);
    
      let hasFolder = 1;
    
      let assemblyFormat = "$lhs `,` $rhs attr-dict `->` type($result)";
    }
    
    def TFR_ConstOp : TFR_Op<"constant", [ConstantLike, Pure]> {
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractReportGenerator.java

     */
    
    package org.gradle.performance.results.report;
    
    import org.apache.commons.lang.StringUtils;
    import org.gradle.api.GradleException;
    import org.gradle.performance.results.FileRenderer;
    import org.gradle.performance.results.NoResultsStore;
    import org.gradle.performance.results.PerformanceDatabase;
    import org.gradle.performance.results.PerformanceExperiment;
    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

    import org.gradle.internal.time.Clock
    import org.gradle.internal.time.Time
    import org.gradle.performance.results.CrossVersionPerformanceResults
    import org.gradle.performance.results.DataReporter
    import org.gradle.performance.results.MeasuredOperationList
    import org.gradle.performance.results.ResultsStoreHelper
    import org.gradle.performance.util.Git
    import org.gradle.profiler.BuildAction
    import org.gradle.profiler.BuildMutator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

          // If the value is used as an operand of the terminator op, adds it to
          // the result list of function that defines this op.
          if (op->hasTrait<OpTrait::IsTerminator>()) {
            if (llvm::find(defining_func_metadata.results, value) ==
                defining_func_metadata.results.end()) {
              defining_func_metadata.results.push_back(value);
              defining_func_metadata.result_devices.push_back(value_device);
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tests/scan_test.go

    		t.Errorf("No error should happen, got %v", err)
    	}
    
    	type Result struct {
    		Name string
    		Age  int
    	}
    
    	var results []Result
    	for rows.Next() {
    		var result Result
    		if err := DB.ScanRows(rows, &result); err != nil {
    			t.Errorf("should get no error, but got %v", err)
    		}
    		results = append(results, result)
    	}
    
    	sort.Slice(results, func(i, j int) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/wasm/asm.go

    	"gcWriteBarrier":          {Params: []byte{I64}, Results: []byte{I64}},                // #bytes -> bufptr
    	"runtime.gcWriteBarrier1": {Results: []byte{I64}},                                     // -> bufptr
    	"runtime.gcWriteBarrier2": {Results: []byte{I64}},                                     // -> bufptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. 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)
Back to top