Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for legalized (0.09 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/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)
  4. 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)
  5. 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