Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for Devices (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

    // RUN: tf-opt %s -split-input-file -tf-xla-broadcast | FileCheck %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/BUILD

            ":__subpackages__",
            "//tensorflow/python:__subpackages__",
        ],
        deps = [
            "@llvm-project//mlir:AffineDialect",
            "@llvm-project//mlir:QuantOps",
            # Link jit lib to link JIT devices required to run
            # xla-legalize-tf-with-tf2xla pass.
            "//tensorflow/compiler/jit",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite_legalize_tf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    class CEvent : public Event {
     public:
      CEvent(SP_Device* device, SP_StreamExecutor* stream_executor)
          : device_(device),
            stream_executor_(stream_executor),
            event_handle_(nullptr) {}
      ~CEvent() override { Destroy(); }
    
      Event::Status PollForStatus() override {
        SE_EventStatus event_status =
            stream_executor_->get_event_status(device_, event_handle_);
    
        switch (event_status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

     */
    public interface Scope {
    
        /**
         * These services are reused across builds in the same process.
         *
         * <p>Global services are visible to all other services.</p>
         */
        interface Global extends Scope {}
    
        /**
         * These services are reused across builds in the same process while the Gradle user home directory remains unchanged.
         * The services are closed when the Gradle user home directory changes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/BuildProcessState.java

            addProviders(builder);
            services = builder.build();
        }
    
        protected void addProviders(ServiceRegistryBuilder builder) {
        }
    
        public ServiceRegistry getServices() {
            return services;
        }
    
        @Override
        public void close() {
            // Force the user home services to be stopped first, because the dependencies between the user home services and the global services are not preserved currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            // Merge the daemon services into the build process services
            // It would be better to separate these into different scopes, but many things still assume that daemon services are available in the global scope,
            // so keep them merged as a migration step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":persistent-cache"))
        api(project(":process-services"))
        api(project(":serialization"))
        api(project(":service-provider"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. subprojects/core-api/build.gradle.kts

            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
        compileOnly(libs.jetbrainsAnnotations)
    
        api(project(":process-services"))
        api(projects.stdlibJavaExtensions)
        api(project(":build-cache-spi"))
        api(project(":logging-api"))
        api(project(":base-services"))
        api(project(":files"))
        api(project(":resources"))
        api(project(":persistent-cache"))
        api(project(":declarative-dsl-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/build.gradle.kts

        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":process-services"))
        api(project(":serialization"))
        api(project(":service-provider"))
        api(project(":snapshots"))
        api(project(":worker-main"))
        api(project(":build-process-services"))
    
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(project(":file-collections"))
        implementation(project(":time"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/build.gradle.kts

    }
    
    description = "Services and utilities needed by Develocity plugin"
    
    errorprone {
        disabledChecks.addAll(
            "SameNameButDifferent", // 4 occurrences
        )
    }
    
    tasks.isolatedProjectsIntegTest {
        enabled = true
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":build-operations"))
        api(project(":base-services"))
        api(project(":configuration-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top