Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 752 for Tresults (0.17 sec)

  1. 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)
  2. src/crypto/tls/bogo_shim_test.go

    		t.Run(name, func(t *testing.T) {
    			if result.Actual == "FAIL" && result.IsUnexpected {
    				t.Fatal(result.Error)
    			}
    			if expectedResult, ok := assertResults[name]; ok && expectedResult != result.Actual {
    				t.Fatalf("unexpected result: got %s, want %s", result.Actual, assertResults[name])
    			}
    			delete(assertResults, name)
    			if result.Actual == "SKIP" {
    				t.Skip()
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                                    results.add(new CachedVariant(i, variantChain));
                                }
                            }
                        }
                    }
    
                    // If we have a result at this depth, don't bother building the next depth's states.
                    if (!results.isEmpty()) {
                        continue;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

      ASSERT_THAT(test_func, NotNull());
    
      Operation* mul_op = FindOperationOfType<TF::MulOp>(test_func);
      SmallVector<Value> results = ConstantFoldOpIfPossible(mul_op);
      EXPECT_THAT(results, SizeIs(1));
      EXPECT_TRUE(isa<TF::ConstOp>(results[0].getDefiningOp()));
    }
    
    TEST_F(ConstantFoldingTest, NotFoldingIdentity) {
      constexpr absl::string_view kModuleCode = R"mlir(
        module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/signature.go

    // Params returns the parameters of signature s, or nil.
    func (s *Signature) Params() *Tuple { return s.params }
    
    // Results returns the results of signature s, or nil.
    func (s *Signature) Results() *Tuple { return s.results }
    
    // Variadic reports whether the signature s is variadic.
    func (s *Signature) Variadic() bool { return s.variadic }
    
    func (s *Signature) Underlying() Type { return s }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.performance.results.GradleProfilerReporter;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.OutputDirSelector;
    import org.gradle.performance.results.OutputDirSelectorUtil;
    import org.gradle.profiler.BuildAction;
    import org.gradle.profiler.BuildContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    LogicalResult CollectAndGroupClusterOps(Block* block, ClusterMap* clusters) {
      LogicalResult result = HasValidDeviceTypeAttribute(block);
      if (failed(result)) return result;
    
      for (Operation& op : *block) {
        LogicalResult result =
            mlir::TF::HasValidCompilationAndReplicationAttributes(op);
        if (failed(result)) return result;
    
        // Skip ops with non-TPU device type, they are handled elsewhere.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	for i, v := range policy.Spec.Validations {
    		results := c.CheckExpression(ctx, v.Expression)
    		if len(results) != 0 {
    			warnings = append(warnings, v1.ExpressionWarning{
    				FieldRef: fieldRef.Index(i).Child("expression").String(),
    				Warning:  results.String(),
    			})
    		}
    		// Note that MessageExpression is optional
    		if v.MessageExpression == "" {
    			continue
    		}
    		results = c.CheckExpression(ctx, v.MessageExpression)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            metadata.visualCppVersion == VersionNumber.parse("14.0")
            metadata.compatibility == LEGACY
        }
    
        def "can determine legacy version of an install from windows registry when command line has no results"() {
            def dir1 = tmpDir.createDir("dir2")
            def dir2 = tmpDir.createDir("dir3")
    
            given:
            windowsRegistryInstall(dir1, "14.0")
            windowsRegistryInstall(dir2, "12.0")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        // Enqueue more than enough tasks to force reentrancy.
        for (int i = 0; i < 5; i++) {
          results.add(serializer.submit(Callables.returning(null), directExecutor()));
        }
    
        manualExecutorTask[0].run();
    
        for (Future<?> result : results) {
          if (!result.isCancelled()) {
            result.get(10, SECONDS);
          }
          // TODO(cpovirk): Verify that the cancelled futures are exactly ones that we expect.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top