Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for disovery (0.1 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // initial value for this variable (via --tf_xla_clustering_fuel=N)
        // effectively acts as a "cap" for how much we cluster and we can bisect
        // over this initial value to discover clustering decisions that cause a
        // miscompile or a performance regression.
        std::atomic<int64_t>* fuel;
    
        bool dump_graphs;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      Log-Output "Creating service: ${LOGGINGEXPORTER_SERVICE}"
      sc.exe create  $LOGGINGEXPORTER_SERVICE  binpath= "${LOGGINGEXPORTER_ROOT}\flb-exporter.exe --kubernetes-separator=_ --stackdriver-resource-model=k8s --enable-pod-label-discovery --logtostderr --winsvc  --pod-label-dot-replacement=_"
      sc.exe failure $LOGGINGEXPORTER_SERVICE reset= 30 actions= restart/5000
      Write-VerboseServiceInfoToConsole -Service $LOGGINGEXPORTER_SERVICE
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ORN (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c|^d])
    (ANDN (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c&^d])
    (NOR (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [^(c|d)])
    
    // Discover consts
    (AND x (MOVDconst [-1])) => x
    (AND x (MOVDconst [c])) && isU16Bit(c) => (ANDconst [c] x)
    (XOR x (MOVDconst [c])) && isU32Bit(c) => (XORconst [c] x)
    (OR x (MOVDconst [c])) && isU32Bit(c) => (ORconst [c] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // the closer of Ops needed to evaluate 'operations'. Input dependencies are
      // walked if 'predecessors' is true and output dependencies are walked if
      // 'successors' is true. In either case, if a discoverd Op is in the
      // 'ops_to_avoid' set, then the dependency walking is terminated.
      llvm::SetVector<Operation*> ops_to_process(*operations);
      llvm::SetVector<Operation*> new_ops;
    
      while (!ops_to_process.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    === Nested inputs
    
    When analyzing `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]` task properties for declared input and output sub-properties Gradle uses the type of the actual value.
    Hence it can discover all sub-properties declared by a runtime sub-type.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top