Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            !vfsHasSnapshotsAt(oldestRegisteredWatchableHierarchy)
            vfsHasSnapshotsAt(newestRegisteredWatchableHierarchy)
        }
    
        def "does not start watching unsupported file system for default watch mode"() {
            def unsupportedFileSystemMountPoint = file("unsupported").createDir()
            def unwatchableContent = unsupportedFileSystemMountPoint.file("file.txt").createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            then:
            1 * watcherRegistry.registerWatchableHierarchy(newWatchableHierarchy, _)
        }
    
        def "detects unsupported file systems on default watch mode"() {
            def unsupportedFileSystems = [new File("unsupported")]
    
            when:
            watchingVirtualFileSystem.afterBuildStarted(WatchMode.DEFAULT, VfsLogging.NORMAL, WatchLogging.NORMAL, buildOperationRunner)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

            assert output.contains("${propertyPrefix}.serviceFactoryCreate.config.autoApplied = $autoApplied")
        }
    
        void assertUnsupportedMessage(String output, String unsupported) {
            assert output.contains("${propertyPrefix}.checkIn.unsupported.reasonMessage = $unsupported")
        }
    
        void assertEndOfBuildWithFailure(String output, @Nullable String failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top