Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 381 for unsupportedOp (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier_test.go

    			expectedSupports: true,
    		},
    		"Field validation unsupported for unknown GVK in primary verifier": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "bad",
    				Version: "v1",
    				Kind:    "Uknown",
    			},
    			queryParam:       QueryParamFieldValidation,
    			expectedSupports: false,
    		},
    		"Unknown query param unsupported (for all GVK's) in primary verifier": {
    			crds: []schema.GroupKind{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 18:30:16 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/c/eager/dlpack.cc

              return absl::OkStatus();
            default:
              return tensorflow::errors::InvalidArgument(
                  "Unsupported Complex bits: ", dtype.bits);
          }
          break;
        default:
          return tensorflow::errors::InvalidArgument("Unsupported Type Codes: ",
                                                     dtype.code);
      }
    }
    
    // Wraps the deleter function of DLManagedTensor to match the function signature
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            fixture.assertStateStoredAndDiscarded {
                hasStoreFailure = false
                problem "Build file 'build.gradle': line 16: invocation of 'Task.project' at execution time is unsupported."
                problem "Task `:declared` of type `Broken`: error writing value of type 'BrokenSerializable'"
            }
    
            when:
            configurationCacheRun("declared")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                CLASS, TYPEALIAS -> tree.unsupported(node, UnsupportedLanguageFeature.TypeDeclaration)
                ARRAY_ACCESS_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.Indexing)
                FUN -> tree.unsupported(node, UnsupportedLanguageFeature.FunctionDeclaration)
                ERROR_ELEMENT -> tree.parsingError(node, node)
                PREFIX_EXPRESSION -> tree.unsupported(node, UnsupportedLanguageFeature.PrefixExpression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/crypto/tls/auth.go

    // an unsupported private key.
    func unsupportedCertificateError(cert *Certificate) error {
    	switch cert.PrivateKey.(type) {
    	case rsa.PrivateKey, ecdsa.PrivateKey:
    		return fmt.Errorf("tls: unsupported certificate: private key is %T, expected *%T",
    			cert.PrivateKey, cert.PrivateKey)
    	case *ed25519.PrivateKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

          }
        }
    
        override fun iterator() = error("unsupported")
    
        override fun offer(e: T) = error("unsupported")
    
        override fun peek(): T = error("unsupported")
    
        override fun offer(
          element: T,
          timeout: Long,
          unit: TimeUnit,
        ) = error("unsupported")
    
        override fun take() = error("unsupported")
    
        override fun remainingCapacity() = error("unsupported")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top