Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 209 for legalized (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            filtered.index.pendingAsMap.size() == 1
    
            expect: "list contains the right elements when iterated"
            filtered.asList() == ["realized2", "unrealized2"]
    
            and: "unrealized element get realized"
            container.index.asMap().size() == 4
            container.index.pendingAsMap.size() == 2
    
            filtered.index.asMap().size() == 2
            filtered.index.pendingAsMap.size() == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

    // COM: This file is there to check that the `tfl-legalize-hlo` pass exists in `odml-to-stablehlo-opt`.
    
    // RUN: odml-to-stablehlo-opt %s -tfl-legalize-hlo -split-input-file | FileCheck %s --dump-input=fail
    
    func.func @main(%arg0: tensor<5x7xf32>) -> tensor<5x7xf32> {
      func.return %arg0: tensor<5x7xf32>
    // CHECK-LABEL: main
    // CHECK: return %arg0 : tensor<5x7xf32>
    }
    
    // - transpose
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history.go

    	}
    	return br[i].Revision < br[j].Revision
    }
    
    func (br byRevision) Swap(i, j int) {
    	br[i], br[j] = br[j], br[i]
    }
    
    // Interface provides an interface allowing for management of a Controller's history as realized by recorded
    // ControllerRevisions. An instance of Interface can be retrieved from NewHistory. Implementations must treat all
    // pointer parameters as "in" parameter, and they must not be mutated.
    type Interface interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top