Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 209 for legalized (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg.mlir

    // RUN: tf-opt -tfe-legalize-tfg %s | FileCheck %s
    
    // CHECK: module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 919 : i32}}
    module  {
      // CHECK: tf_executor.graph
      tfg.graph #tf_type.version<producer = 919, min_consumer = 12> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/collections/PendingSource.java

        /**
         * Adds an action to be executed when a value from a pending element is concretely added.
         * The provided action is only called when a pending value is realized and the value is not
         * already present in the concrete values of this source.
         */
        void onPendingAdded(Action<T> action);
    
        boolean isEmpty();
    
        int size();
    
        void clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromWithTypeAllDomainObjectContainerIntegrationTest.groovy

        def "can execute query and mutating methods #method.key from withType.all"() {
            buildFile << """
                testContainer.withType(testContainer.type).all {
                    if (it.name == "realized") {
                        ${method.value}
                    }
                }
            """
    
            expect:
            succeeds "help"
    
            where:
            method << getQueryMethods() + getMutationMethods()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf_while.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_LEGALIZEWHILEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // Legalize TF While to TFL While with calls to the original functions from the
    // cond and body regions.
    struct LegalizeWhilePass
        : public impl::LegalizeWhilePassBase<LegalizeWhilePass> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/RealizeTaskBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks;
    
    import org.gradle.internal.operations.BuildOperationType;
    
    /**
     * Represents a creation request for a task. Actual task may be realized later.
     *
     * @since 4.9
     */
    public final class RealizeTaskBuildOperationType implements BuildOperationType<RealizeTaskBuildOperationType.Details, RealizeTaskBuildOperationType.Result> {
    
        public interface Details {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromAllDomainObjectContainerIntegrationTest.groovy

        def "can execute query and mutating methods #method.key from all"() {
            buildFile << """
                testContainer.all {
                    if (it.name == "realized") {
                        ${method.value}
                    }
                }
            """
    
            expect:
            succeeds "help"
    
            where:
            method << getQueryMethods() + getMutationMethods()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromGetByNameDomainObjectContainerIntegrationTest.groovy

        def "can execute query and mutation methods #method.key from getByName"() {
            buildFile << """
                testContainer.getByName("realized") {
                    ${method.value}
                }
            """
    
            expect:
            succeeds "help"
    
            where:
            method << getQueryMethods() + getMutationMethods()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

          /*allow_mutable_tensors=*/true));
    
      // Generic MLIR optimization passes.
      pm.addPass(mlir::createCanonicalizerPass());
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
    
      // Legalizes TF UniformQuantized types into MHLO.
      pm.addNestedPass<func::FuncOp>(
          mlir::quant::stablehlo::CreateConvertTFQuantOpsToMHLOPass());
      pm.addPass(mlir::createCanonicalizerPass());
    
      // TF -> StableHLO legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

        const ::stablehlo::quantization::DebuggerConfig& debugger_config);
    
    // Deserializes StableHLO functions serialized and embedded in XlaCallModuleOps.
    void AddXlaCallModuleOpDeserializationPasses(OpPassManager& pm);
    
    // Legalizes shape/tensor/arith dialect ops to StableHLO for handling dynamic
    // shapes, by going through a round-trip to MHLO.
    void AddShapeLegalizationPasses(OpPassManager& pm);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo_test.cc

      CellReader<int64_t> counts(kBridgeStatusCounter);
    
      auto result = CompileMlirModule(kBadMlirModuleStr);
    
      ASSERT_FALSE(result.ok());
      // Never failed to legalize because it was never attempted
      EXPECT_EQ(legalize_failure_count.Read("tf.DoesntExist", "Unknown"), 0);
      EXPECT_THAT(result,
                  IncrementedOrFiltered(counts.Delta(kMlirCombinedMlirSuccess), 1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top