Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,024 for unsupportedOp (0.48 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-reduce-identity.mlir

    // RUN: tf-reduce %s -reduction-tree='traversal-mode=0 test=%S/reducer/unsupported-op-test.sh' | FileCheck %s
    
    // CHECK: @target_function
    func.func @target_function() -> tensor<i32> {
      %0 = "tf_device.cluster"() ({
        // CHECK: tf.UnsupportedOp
        %1 = "tf.UnsupportedOp"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        // CHECK: tf.Identity
        %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
        // CHECK-NOT: tf.Identity
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 756 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

      func.return %0 : tensor<i32>
    }
    
    // CHECK-LABEL: func @unsupported_op
    func.func @unsupported_op() -> tensor<i32> {
      %0 = "tf_device.cluster"() ({
        // CHECK: "tf.UnsupportedOp"
        // CHECK-SAME: _xla_outside_compilation
        // CHECK: "tf.Identity"
        // CHECK-NOT: _xla_outside_compilation
        %1 = "tf.UnsupportedOp"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/reducer/unsupported-op-test.sh

    # ==============================================================================
    
    # Script for mlir-reduce to test input interestingness.
    tf-opt $1 -tf-mark-ops-for-outside-compilation &> | grep "'tf.UnsupportedOp' op isn't compilable for TPU device"
    
    if [ $? -eq 0 ]; then
      exit 1
    else
      exit 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 29 09:41:12 UTC 2021
    - 920 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        that will be rewritten or decomposed before compiling on device.
    
    
        For example, tf_device.cluster op with an unsupported op, tf.UnsupportedOp:
    
        ```mlir
        func @unsupported_op() -> tensor<i32> {
          %0 = "tf_device.cluster"() ( {
            %1 = "tf.UnsupportedOp"() : () -> tensor<i32>
            %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
            tf_device.return %2 : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

      %0 = tf_executor.graph {
        // CHECK:      tf.UnsupportedOp
        // CHECK-NOT:  device = "/job:localhost/replica:0/task:0/device:TPU:0"
        %1:2 = tf_executor.island wraps "tf.UnsupportedOp"(%arg0) : (tensor<i64>) -> tensor<i64>
        tf_executor.fetch %1#0 : tensor<i64>
      }
      func.return %0 : tensor<i64>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

      %1 = "tf.XlaRecvFromHost"() {key = "recv_key_call3", shape = #tf_type.shape<>} : () -> tensor<i32>
      func.return %1 : tensor<i32>
    }
    
    func.func @UnsupportedOp(%arg0: tensor<i32>) -> tensor<i32> {
      // expected-error @+1 {{does not support subcomputations with tf/xla communication ops}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    					Field:    "values[0][x17]",
    					BadValue: "a b",
    				},
    			},
    		},
    		{
    			Key: "x18",
    			Op:  "unsupportedOp",
    			WantErr: field.ErrorList{
    				&field.Error{
    					Type:     field.ErrorTypeNotSupported,
    					Field:    "operator",
    					BadValue: selection.Operator("unsupportedOp"),
    				},
    			},
    		},
    	}
    	for _, rc := range requirementConstructorTests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    that will be rewritten or decomposed before compiling on device.
    
    
    For example, tf_device.cluster op with an unsupported op, tf.UnsupportedOp:
    
    ```mlir
    func @unsupported_op() -> tensor<i32> {
      %0 = "tf_device.cluster"() ( {
        %1 = "tf.UnsupportedOp"() : () -> tensor<i32>
        %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
        tf_device.return %2 : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Unsupported.kt

            null
        }
    )
    
    
    inline fun <reified T : Any> unsupported(
        description: String,
        documentationSection: DocumentationSection = DocumentationSection.RequirementsDisallowedTypes
    ) = unsupported<T>(documentationSection) {
        text(description)
    }
    
    
    inline fun <reified T : Any> unsupported(
        documentationSection: DocumentationSection = DocumentationSection.RequirementsDisallowedTypes,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unsupported-format.toml

    Louis Jacomet <******@****.***> 1615370565 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 38 bytes
    - Viewed (0)
Back to top