Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 682 for Forked (0.13 sec)

  1. tensorflow/compiler/jit/flags.cc

               &mark_for_compilation_flags->tf_xla_min_cluster_size,
               "Minimum number of operators in an XLA compilation. Ignored for "
               "operators placed on an XLA device or operators explicitly marked "
               "for compilation."),
          Flag("tf_xla_max_cluster_size",
               &mark_for_compilation_flags->tf_xla_max_cluster_size,
               "Maximum number of operators in an XLA compilation."),
          Flag(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

      }) {allow_soft_placement = true, num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> tensor<i32>
      func.return %0 : tensor<i32>
    }
    
    // Test that operations inside tf.IfRegion op are corrected marked for outside
    // compilation.
    
    // CHECK-LABEL: func @ops_inside_tf_if_outside_compiled
    func.func @ops_inside_tf_if_outside_compiled(%arg0: tensor<i1>, %arg1: tensor<!tf_type.string>) -> tensor<f32> {
    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/ir/tf_ops.cc

    bool TensorFlowDialect::CanDuplicate(Operation *op) {
      // If the op is marked with the cannot duplicate trait, it cannot be
      // duplicated.
      if (op->hasTrait<OpTrait::TF::CannotDuplicate>()) return false;
    
      // If the op has no memory side effects, it can be duplicated.
      if (isMemoryEffectFree(op)) return true;
    
      // If the op is marked stateless using the `is_stateless` attribute, that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            run "javadoc"
            then:
            executedAndNotSkipped(":javadoc")
    
            when: "running the task the second time after adding a custom option, it is executed and succeeds and NOT marked UP-TO-DATE"
            buildFile.text = """
                task javadoc(type: Javadoc) {
                    destinationDir = file("build/javadoc")
                    source "src/main/java"
                    options {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

        }
    
        /**
         * Snapshots a directory, reusing existing previously known snapshots.
         *
         * Follows symlinks and includes them in the returned snapshot.
         * Snapshots of followed symlinks are marked with {@link AccessType#VIA_SYMLINK}.
         *
         * @param absolutePath The absolute path of the directory to snapshot.
         * @param predicate A predicate that determines which files to include in the snapshot.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

    /**
     * A tool for synchronising the state amongst different threads.
     *
     * This class has no knowledge of the Daemon's internals and is designed to be used internally by the daemon to coordinate itself and allow worker threads to control the daemon's busy/idle status.
     *
     * This is not exposed to clients of the daemon.
     */
    public class DaemonStateCoordinator implements Stoppable, DaemonStateControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

        return buildString { recurse(languageTreeElement, 0) }
    }
    
    
    private
    fun SourceData.prettyPrint(): String =
        buildString {
            // We add +1 here as that was how the original implementation worked, just to avoid fixing all test data:
            append("indexes: ${indexRange.start}..${indexRange.endInclusive + 1}, ")
            append("line/column: ${lineRange.first}/$startColumn..${lineRange.last}/${endColumn + 1}, ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    	// Set up and fork. This returns immediately in the parent or
    	// if there's an error.
    	upid, pidfd, err, mapPipe, locked := forkAndExecInChild1(argv0, argv, envv, chroot, dir, attr, sys, pipe)
    	if locked {
    		runtime_AfterFork()
    	}
    	if err != 0 {
    		return 0, err
    	}
    
    	// parent; return PID
    	pid = int(upid)
    	if sys.PidFD != nil {
    		*sys.PidFD = int(pidfd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

            then:
            classpath.size() == 1
            entryIsDeployed(classpath[0], '/custom/lib/dir')
    
        }
    
    
        def "All non-wtp dependencies are marked as not deployed"() {
            given:
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'war'
               repositories { $localMaven }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case REQUESTED:
                    return "Was requested";
                case SELECTED_BY_RULE:
                    return "Selected by rule";
                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top