Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 420 for Compilation (0.13 sec)

  1. tensorflow/compiler/jit/encapsulate_util.cc

            // Case 1a: outside compilation to outside compilation control edge.
            edges_to_remove.push_back(e);
    
            TF_RETURN_IF_ERROR(AppendToListAttr<string>(
                e->dst(), kXlaControlDependenciesWithinXlaClusterAttrName,
                e->src()->name()));
          }
        } else if (src_outside_compilation && !dst_outside_compilation) {
          // Case 1b: outside compilation to its XLA computation control edge.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compile_util.h

    #include <memory>
    #include <string>
    
    #include "tensorflow/compiler/tf2xla/xla_argument.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    // The number of compiler threads to use for asynchronous device compilation.
    inline constexpr int64_t kNumAsyncDeviceCompilerThreads = 10;
    
    enum class DeviceCompileMode {
      kLazy,
      kStrict,
      kAsync,
    };
    
    enum class DeviceCompileState {
      kUncompiled,
      kCompiling,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

        std::vector<tensorflow::Flag>* flag_list);
    
    // Disables XLA compilation, forces it to return an error message instead. Can
    // be used by a server to ensure that JIT compilation is opt-in.
    void DisableXlaCompilation();
    
    // Enables XLA compilation. Can be used with `DisableXlaCompilation` to
    // enable/disable JIT compilation at different stages.
    void EnableXlaCompilation();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compilation_profiler.h

      // cluster and also determines whether the cluster has gone megamorphic (and
      // sets the megamorphic bit accordingly).
      void RegisterExecution(const NameAttrList& function);
    
      // Registers a cluster compilation. Increments the compilation count and
      // accumulates the compile time for the given cluster. Also broadcasts an
      // XlaJitCompilationActivity.
      virtual Status RegisterCompilation(const NameAttrList& function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                    result.assertNotOutput("Stored cache entry for Kotlin DSL script compilation")
                    result.assertOutputContains("Caching of Kotlin script compilation disabled by property")
                } else {
                    result.assertOutputContains("Stored cache entry for Kotlin DSL script compilation")
                    result.assertNotOutput("Caching of Kotlin script compilation disabled by property")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/flags.cc

                "device"
                "forces compilation by XLA. Deprecated."),
    
           Flag("tf_xla_always_defer_compilation",
                &ops_flags->tf_xla_always_defer_compilation, ""),
           Flag("tf_xla_async_compilation", &ops_flags->tf_xla_async_compilation,
                "When lazy compilation is enabled, asynchronous compilation starts "
                "the cluster compilation in the background, and the fallback path "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    Java 6 and 7 can be used for <<building_java_projects.adoc#sec:java_cross_compilation,compilation>> but are deprecated for use with testing. Testing with Java 6 and 7 will not be supported in Gradle 9.0.
    
    Any fully supported version of Java can be used for compilation or testing.
    However, the latest Java version may only be supported for compilation or testing, not for running Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

                    @ReplacesEagerProperty
                    public abstract Property<String> getSourceCompatibility();
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation)
                .generatedFile(CLASS_OUTPUT, "META-INF/gradle/instrumentation/upgraded-properties.json")
                .contentsAsString(StandardCharsets.UTF_8)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_device_compiler_client.h

      // have been produced by this client.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::PjRtLoadedExecutable& executable) override;
    
      // PjRt doesn't support AOT compilation yet. Builds a PjRtLoadedExecutable and
      // serializes it to string.
      absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/device_compiler_test_helper.h

      // Runs the graph using specified batch size both with and without XLA JIT
      // compilation. Returns an error if the results between the two do not match.
      Status ExecuteWithBatch(const GraphDef& graph, int batch);
    
      // Adds the suffix "_altered" to the HLO module names of all of the persistent
      // XLA compilation cache entries found at the specified directory. If none are
      // found, returns NOT_FOUND error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top