Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for legalized (0.5 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

         * The returned collection is live, so that when matching objects are added to this collection,
         * they are also visible in the filtered collection.
         * This method will NOT cause any pending objects in this container to be realized.
         *
         * @param nameFilter The specification to test names against.
         * @return The collection of objects with names satisfying the filter. Returns an empty collection if there are no such objects in this collection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            then:
            1 * deferredAction.execute(task)
            then:
            0 * action._
            0 * deferredAction._
        }
    
        void "task configuration action is executed immediately when task is already realized"() {
            def action = Mock(Action)
            def task = task("task")
    
            given:
            1 * taskFactory.create(_ as TaskIdentity) >> task
    
            def provider = container.register("task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert-tf-quant-types.mlir

    }
    
    // -----
    
    func.func @tf_const_invalid_proto() -> tensor<2x!tf_type.qint32> {
      // expected-error@+2 {{failed to get DenseElementAttr}}
      // expected-error@+1 {{failed to legalize operation 'tf.Const'}}
      %0 = "tf.Const"() { value = #tf_type<tensor_proto : "0x2532"> : tensor<2x!tf_type.qint32> } : () -> tensor<2x!tf_type.qint32>
      func.return %0 :  tensor<2x!tf_type.qint32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

    constexpr char kResourceArgUniqueIdAttr[] = "tf._resource_arg_unique_id";
    constexpr char kEntryFuncAttr[] = "tf.entry_function";
    constexpr char kAliasingAttr[] = "tf.aliasing_output";
    
    // OpOrArgLocNameMapper that legalizes the returned name.
    class LegalizedOpOrValLocNameMapper : public OpOrArgLocNameMapper {
     private:
      std::string GetName(OpOrVal op_or_val) override {
        std::string name = OpOrArgLocNameMapper::GetName(op_or_val);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

    constexpr char kResourceArgUniqueIdAttr[] = "tf._resource_arg_unique_id";
    constexpr char kEntryFuncAttr[] = "tf.entry_function";
    constexpr char kAliasingAttr[] = "tf.aliasing_output";
    
    // OpOrArgLocNameMapper that legalizes the returned name.
    class LegalizedOpOrValLocNameMapper : public OpOrArgLocNameMapper {
     private:
      std::string GetName(OpOrVal op_or_val) override {
        std::string name = OpOrArgLocNameMapper::GetName(op_or_val);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

            succeeds("integTest")
    
            and:
            result.assertTaskExecuted(":integTest")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/18622")
        def "custom Test tasks eagerly realized prior to Java and Test Suite plugin application do not fail to be configured when combined with test suites"() {
            buildFile << """
                tasks.withType(Test) {
                    // realize all test tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // (either defined in TensorArrayV3 or implied in the first write).
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTensorArrayOpsDecompositionPass();
    
    // Create a pass that legalize TFG to TF dialect.
    std::unique_ptr<Pass> CreateLegalizeTFGToTFEPass();
    
    // Matches sequence of ops to TensorFlow fused kernels. This pass should not be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    constexpr int64_t kShardingTpuCore = 0;
    
    #define GEN_PASS_DEF_LEGALIZETFCOMMUNICATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/transforms/tf_xla_passes.h.inc"
    
    // A pass that legalizes TF/XLA communication ops, propagate their respective
    // tokens (for ordering), and rewrite their respective functions and control
    // flow ops when necessary.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  9. src/go/types/check.go

    		// not be mutated. See https://go.dev/issue/61212 for an example of where
    		// Unsafe is passed to NewChecker.
    		return nil
    	}
    
    	// Avoid early returns here! Nearly all errors can be
    	// localized to a piece of syntax and needn't prevent
    	// type-checking of the rest of the package.
    
    	defer check.handleBailout(&err)
    	check.checkFiles(files)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

                    other = "create()"
                }
            }
            realize()
    
            then:
            realizeChild("foo").other == "create() all{} afterEach{}"
        }
    
        def "cannot add when realized"() {
            when:
            realizeAsModelMap().create("foo")
    
            then:
            thrown ReadOnlyModelViewException
        }
    
        def "is managed instance"() {
            when:
            mutate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top