Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 124 for legalized (0.24 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/tf_to_quant.cc

    namespace mlir {
    namespace TF {
    
    //===----------------------------------------------------------------------===//
    // The pass to legalize the quantization emulation ops from TF.
    //
    namespace {
    
    // Legalize TF quantization emulation ops to that in Quant ops dialect.
    struct LegalizeTFToQuant
        : public PassWrapper<LegalizeTFToQuant, OperationPass<func::FuncOp>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/README.md

    - The Canonicalization pass iteratively applies canonicalization
    transformations in a greedy way until no further changes occur.
    Canonicalization includes constant folding.
    - The Legalize pass converts TensorFlow operations to TensorFlow Lite
    ones. The operations that cannot be mapped to TensorFlow Lite dialect
    are left as TensorFlow operations. Unsupported op handling follows the
    proposed TFLite mechanism.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 29 11:30:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    		}
    	}
    	return prefs
    }
    
    // Hello returns a localized greeting.
    // If no prefs are given, Hello uses DefaultUserPrefs.
    func Hello(prefs ...language.Tag) string {
    	if len(prefs) == 0 {
    		prefs = DefaultUserPrefs()
    	}
    	return hello.find(prefs)
    }
    
    func Glass() string {
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // A text is a localized text.
    type text struct {
    	byTag   map[string]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    		}
    	}
    	return prefs
    }
    
    // Hello returns a localized greeting.
    // If no prefs are given, Hello uses DefaultUserPrefs.
    func Hello(prefs ...language.Tag) string {
    	if len(prefs) == 0 {
    		prefs = DefaultUserPrefs()
    	}
    	return hello.find(prefs)
    }
    
    // Glass returns a localized silly phrase.
    // If no prefs are given, Glass uses DefaultUserPrefs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/MutationFailureFromProviderConfigureRealizedDomainObjectContainerIntegrationTest.groovy

        def "cannot execute mutation method #mutationMethod.key from Provider.configure (realized)"() {
            buildFile << """
                realized.configure {
                    ${mutationMethod.value}
                }
                toBeRealized.get()
            """
    
            expect:
            fails "help"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskOverwritingIntegrationTest.groovy

                def myTask = tasks.register("myTask", SomeTask) {
                    assert false, "This task is overwritten before been realized"
                }
                myTask.configure {
                    assert false, "This task is overwritten before been realized"
                }
    
                tasks.create(name: "myTask", type: SomeOtherTask, overwrite: true) {
                   println "Configure ${path}"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/legalize_tfg_with_control_flow.mlir

    // RUN: tf-opt -tfe-legalize-tfg %s | FileCheck %s
    
    module  {
      tfg.graph #tf_type.version<producer = 27, min_consumer = 0> {
        // CHECK: tf_executor.Enter
        // CHECK: {{%.*}}, %[[TOKEN:.*]], {{%.*}} = tf_executor.NextIteration.Source
        // CHECK: {{%.*}}, {{%.*}}, %[[CONTROL:.*]] = tf_executor.Merge
        // CHECK: tf_executor.island(%[[CONTROL]]) wraps "tf.Const"()
        // CHECK: tf_executor.LoopCond
        // CHECK: tf_executor.Switch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 06 18:31:38 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

    }
    
    TEST(CompileMlirUtil, HasLegalizationPass) {
      OpPassManager pass_manager;
      llvm::StringRef device_type = "XLA_CPU_JIT";
      absl::string_view kLegalizeTfPass = "xla-legalize-tf";
    
      CreateConvertMlirToXlaHloPipeline(pass_manager, device_type,
                                        /*enable_op_fallback=*/true,
                                        /*custom_legalization_passes*/ {});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ElementSourceSpec.groovy

            and:
            source.iterator().collect() == iterationOrder("foo", "bar", "baz", "fizz", "fuzz", "bazz")
        }
    
        def "once realized, provided values appear like realized values"() {
            when:
            source.addPending(provider("foo"))
            source.add("bar")
            source.add("baz")
            source.addPending(provider("fizz"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize_jax_random.mlir

    // RUN: tf-opt -tfl-legalize-random %s | FileCheck %s
    
    
    // CHECK-LABEL:   func @tfl_wrapped_jax_random_normal(
    // CHECK-SAME:                                        %[[RNG:.*]]: tensor<2xui32>) -> tuple<tensor<3x4xf32>> {
    // CHECK:           %[[VAL_0:.*]] = stablehlo.constant dense<[3, 4]> : tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top