Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 209 for legalized (0.46 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

      // `lower_static_tensor_list` pass.
      return element_type->isF32() || element_type->isInteger(64) ||
             element_type->isInteger(32) || element_type->isInteger(1);
    }
    
    // Only legalize TensorFlow TensorList ops if all TensorList ops are supported
    // natively.
    class LegalizeTensorListPass
        : public impl::LegalizeTensorListPassBase<LegalizeTensorListPass> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultMutableAttributeContainer.java

                        Provider<?> value = lazyAttributes.get(key);
                        // Between getting the list of keys and realizing the values
                        // some lazy attributes have been realized and removed from the map
                        // This can happen when a side effect of calculating the value of a Provider
                        // causes dependency resolution or evaluation of the attributes of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 20:29:26 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

    gentbl_cc_library(
        name = "xla_legalize_tf_passes_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                [
                    "-gen-pass-decls",
                    "-name=LegalizeTf",
                ],
                "xla_legalize_tf_passes.h.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "xla_legalize_tf_passes.td",
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

        /**
         * Adds an {@code Action} to be executed when an object is added to this collection.
         * <p>
         * Like {@link #all(Action)}, this method will cause all objects in this container to be realized.
         * </p>
         * @param action The action to be executed
         * @return the supplied action
         */
        Action<? super T> whenObjectAdded(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            filtered.index.pendingAsMap.size() == 1
    
            expect: "list contains the right elements when iterated"
            filtered.asList()*.name == ["realized2", "unrealized2"]
    
            and: "unrealized element get realized"
            container.index.asMap().size() == 4
            container.index.pendingAsMap.size() == 2
    
            filtered.index.asMap().size() == 2
            filtered.index.pendingAsMap.size() == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. src/net/lookup_windows_test.go

    		if err != nil {
    			// The DNSError type stores the error as a string, so it cannot wrap the
    			// original error code and we cannot check for it here. However, we can at
    			// least use its error string to identify the correct localized text for
    			// the error to skip.
    			var DNS_ERROR_RCODE_SERVER_FAILURE syscall.Errno = 9002
    			if strings.HasSuffix(err.Error(), DNS_ERROR_RCODE_SERVER_FAILURE.Error()) {
    				testenv.SkipFlaky(t, 38111)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. internal/dsync/dsync_test.go

    	// profitable. To achieve this we create a goroutine per-proc.
    	// These goroutines access considerable amount of local data so that
    	// unnecessary rescheduling is penalized by cache misses.
    	m := NewDRWMutex(ds, "")
    	var acc0, acc1 uint64
    	b.RunParallel(func(pb *testing.PB) {
    		var data [16 << 10]uint64
    		for i := 0; pb.Next(); i++ {
    			m.Lock(id, source)
    			acc0 -= 100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 24 03:49:07 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

            output.contains("plugin name: windows 10")
            output.contains("script input: Family 'windows'")
            output.contains("script name: windows 10")
        }
    
        def "target of reference is realized when used as an input"() {
            when:
            buildScript '''
                @Managed
                interface Platforms {
                    OperatingSystem getCurrent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginIntegrationTest.groovy

                dependencies {
                    testImplementation 'junit:junit:4.13'
                }
    
                tasks.withType(Test).configureEach {
                    throw new RuntimeException("Test task should not have been realized")
                }""".stripIndent()
    
            file("src/main/java/com/example/SampleClass.java") << """
                package com.example;
    
                public class SampleClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

                })
            }
            expect:
            container.asImmutable().keySet().size() == 100
            actual == expected
        }
    
        def "realizing the value of lazy attributes may cause other attributes to be realized"() {
            def container = new DefaultMutableAttributeContainer(attributesFactory)
            def firstAttribute = Attribute.of("first", String)
            def secondAttribute = Attribute.of("second", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top