Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for legalized (0.21 sec)

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

    ==============================================================================*/
    
    // This transformation pass prepares for legalization to the TFLite dialect by
    // converting operations in TensorFlow dialect into operations that can be
    // legalized to TensorFlow Lite dialect with simple replacements.  The newly
    // created operations are in the TensorFlow dialect if the operation can be
    // represented using a TensorFlow op.  Otherwise, TensorFlow Lite dialect op is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // This transformation pass prepares for legalization to the TFLite dialect by
    // converting Tensorlist operations in TensorFlow dialect into operations that
    // can be legalized to TensorFlow Lite dialect with simple replacements.  The
    // newly created operations are in the TensorFlow dialect if the operation can
    // be represented using a TensorFlow op. Otherwise, TensorFlow Lite dialect op
    // is used.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    After serialization, this pass removes the `_entry_function` attribute from
    `tf.XlaCallModule`, and removes all the serialized stablehlo functions
    from the top-level module.
    ### `-tfe-legalize-tfg`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            toList(container) == [a]
    
            when:
            container.addAll([a, b])
    
            then:
            toList(container) == [a, b]
        }
    
        def "element added using provider is not realized when added"() {
            containerAllowsExternalProviders()
            def provider = Mock(ProviderInternal)
    
            when:
            container.addLater(provider)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $relu_out),
       (HasOneUse $mul_out),
       (HasOneUse $input_neg_out)]>;
    
    // The constant folding in this pass might produce constant in the tf dialect.
    // This rule is to legalize these constant to the tfl dialect.
    def LegalizeConstOp : Pat<
      (TF_ConstOp ElementsAttr:$value), (TFL_ConstOp $value)>;
    
    // Reorders adds to allow constant folding.
    // Add --> Add $input, $constantA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            registry.register("foo") { it.unmanaged(String, "ref.indirect.child") { it } }
    
            expect:
            registry.realize("foo", String) == "value"
        }
    
        def "child reference can be null when parent is realized"() {
            given:
            registry.register("parent") { parentBuilder ->
                parentBuilder.unmanagedNode(String) { node ->
                    node.addReference("child", String, null)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,kotlin]
    ----
    tasks.test {
        // lazy configuration
    }
    
    // Lazy reference
    val testProvider: TaskProvider<Test> = tasks.test
    
    testProvider {
        // lazy configuration
    }
    
    // Eagerly realized Test task, defeat configuration avoidance if done out of a lazy context
    val test: Test = tasks.test.get()
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    type UpdatePodOptions struct {
    	// The type of update (create, update, sync, kill).
    	UpdateType kubetypes.SyncPodType
    	// StartTime is an optional timestamp for when this update was created. If set,
    	// when this update is fully realized by the pod worker it will be recorded in
    	// the PodWorkerDuration metric.
    	StartTime time.Time
    	// Pod to update. Required.
    	Pod *v1.Pod
    	// MirrorPod is the mirror pod if Pod is a static pod. Optional when UpdateType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This requires inspecting all configurations and artifacts.
    Processing artifacts created by tasks causes those tasks to be realized and configured.
    
    This internal representation is now created more lazily, which can change the order in which tasks are configured.
    Some tasks may never be configured.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top