Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for new_results (0.46 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/fixture/BuildScanPerformanceTestRunner.groovy

            super(experimentRunner, dataReporter, buildContext)
            this.pluginCommitSha = pluginCommitSha
            this.testGroup = "build scan plugin"
    
        }
    
        @Override
        CrossBuildPerformanceResults newResult() {
            new CrossBuildPerformanceResults(
                testClass: testClassName,
                testId: testId,
                testProject: testProject,
                testGroup: testGroup,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

                throw new IllegalArgumentException("Gradle invocation display name must start with 'Gradle '")
            }
        }
    
        @Override
        GradleVsMavenBuildPerformanceResults newResult() {
            new GradleVsMavenBuildPerformanceResults(
                testClass: testClassName,
                testId: testId,
                testProject: testProject,
                testGroup: testGroup,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

        main_func.setArgAttr(
            i, kTfSavedModelIndexPathAttr,
            ArrayAttr::get(context, {StringAttr::get(context, input_names[i])}));
      }
    
      const int num_results = main_func.getNumResults();
      for (int i = 0; i < num_results; ++i) {
        main_func.setResultAttr(
            i, kTfSavedModelIndexPathAttr,
            ArrayAttr::get(context, {StringAttr::get(context, output_names[i])}));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      }
    
      return success();
    }
    
    LogicalResult CheckOutputConsumer(
        Operation* call_op, int expected_num_outputs,
        llvm::DenseSet<int> expected_consumer_indices) {
      const int num_results = call_op->getNumResults();
      if (num_results != expected_num_outputs) return failure();
    
      for (int i = 0; i < expected_num_outputs; ++i) {
        auto it = expected_consumer_indices.find(i);
        if (it == expected_consumer_indices.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      for (Operation& op : func.getOps()) {
        if (!IsTPUOp(&op)) continue;
        op.setAttr(TF::kReplicationInfoAttr, new_group);
      }
      TF::TPUCompilationResultOp new_result = compilation_op.clone();
      new_result->setAttr(kTpuCompilationStatus, new_group);
      builder.insert(new_result);
    }
    
    template <typename OpType>
    LogicalResult FindAndExcludeOp(func::FuncOp func,
                                   const StringAttr& replication_attr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

        auto av = MakeAvailableAsyncValueRef<FallbackTensor>(input_tensor);
        exec_arguments.push_back(av.release());
      }
    
      // Space for returned values.
      llvm::SmallVector<RCReference<AsyncValue>> results(compute->num_results());
    
      compute->Execute(*exec_ctx_, exec_arguments, results);
    
      // Wait for the function execution to finish, as well as the side-effects.
      host_context_->Await(results);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        const int64_t num_results = graph.getNumResults();
        if (mlir::isa<ControlType>(operand.getType())) {
          if (i != num_results)
            return fetch.emitOpError()
                   << "operand #" << i
                   << " is a control type, can't be bound to a graph result";
          break;
        }
        if (i >= num_results)
          return fetch.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    		t.SetHasShape(true)
    	}
    	return t
    }
    
    func newResults(types []*Type) *Type {
    	t := newType(TRESULTS)
    	t.extra.(*Results).Types = types
    	return t
    }
    
    func NewResults(types []*Type) *Type {
    	if len(types) == 1 && types[0] == TypeMem {
    		return TypeResultMem
    	}
    	return newResults(types)
    }
    
    func newSSA(name string) *Type {
    	t := newType(TSSA)
    	t.extra = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin.go

    	if conf.RawPrevResult != nil {
    		resultBytes, err := json.Marshal(conf.RawPrevResult)
    		if err != nil {
    			return nil, fmt.Errorf("could not serialize prevResult: %v", err)
    		}
    		res, err := version.NewResult(conf.CNIVersion, resultBytes)
    		if err != nil {
    			return nil, fmt.Errorf("could not parse prevResult: %v", err)
    		}
    		conf.RawPrevResult = nil
    		conf.PrevResult, err = cniv1.NewResultFromResult(res)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen.cc

      }
      size_t num_results = ps.result().tuple_shapes_size();
      int readonly_variables = absl::c_count_if(
          config.variable(),
          [](const tf2xla::Variable& var) { return var.readonly(); });
      const int actual_num_results =
          config.fetch_size() + config.variable_size() - readonly_variables;
      if (actual_num_results != num_results) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top