Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for Unstage (0.2 sec)

  1. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

                                             .WithAttr("value", Tensor()));
        Node* unstage = ops::SourceOp(
            "Unstage",
            builder.opts().WithName("unstage").WithAttr("dtypes", {DT_FLOAT}));
    
        Node* add0 = ops::BinaryOp("Add", a, b, builder.opts().WithName("add0"));
        Node* add1 =
            ops::BinaryOp("Add", unstage, b, builder.opts().WithName("add1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // purpose of discussion.  After adding scopes for both Stage and Unstage,
    // Node_Y will receive both scopes "unstage" and "stage", while Node_X receives
    // only scope "stage".  The semantic of scope "unstage" is preserved although
    // scope "stage" is later appended.  As a result, Node_X and Node_Y will be put
    // into different clusters.
    //
    //                Unstage -> Node_Y (scope "unstage & stage")
    //                              |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_block.go

     - SetUpDevice calls CSI's NodeStageVolume and stage a volume to its staging path,
     - MapPodDevice calls CSI's NodePublishVolume and publish a volume to its publish path,
     - UnmapPodDevice calls CSI's NodeUnpublishVolume and unpublish a volume from its publish path,
     - TearDownDevice calls CSI's NodeUnstageVolume and unstage a volume from its staging path.
    
    These methods are called by below sequences:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                             .WithAttr("value", Tensor()));
        Node* unstage = ops::SourceOp(
            "Unstage",
            builder.opts().WithName("unstage").WithAttr("dtypes", {DT_FLOAT}));
    
        Node* add0 = ops::BinaryOp("Add", a, b, builder.opts().WithName("add0"));
        Node* add1 =
            ops::BinaryOp("Add", unstage, b, builder.opts().WithName("add1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher.go

    	}
    	csiSource, err := getPVSourceFromSpec(spec)
    	if err != nil {
    		return errors.New(log("attacher.MountDevice failed to get CSIPersistentVolumeSource: %v", err))
    	}
    
    	// lets check if node/unstage is supported
    	if c.csiClient == nil {
    		c.csiClient, err = newCsiDriverClient(csiDriverName(csiSource.Driver))
    		if err != nil {
    			// Treat the absence of the CSI driver as a transient error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ParserToCompilerTest.kt

                "stage 1 buildscript\nstage 1 plugins\n"
            )
        }
    
        @Test
        fun `pluginManagement then buildscript then plugins`() {
            val source = ProgramSource(
                "settings.gradle.kts",
                """
                pluginManagement { println("stage 1 pluginManagement") }
                buildscript { println("stage 1 buildscript") }
                plugins { println("stage 1 plugins") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. cluster/gce/gci/mounter/stage-upload.sh

    cleanup() {
        rm -rf "${DOWNLOAD_DIR}"
        rm -rf "${STAGING_DIR}"
        cd "${CWD}"
    }
    
    # Delete temporary directories on exit
    trap cleanup EXIT
    
    mkdir "${ACI_DIR}"
    
    # Convert docker image to aci and stage it
    echo "Downloading docker2aci ${DOCKER2ACI_VERSION}"
    wget "https://github.com/appc/docker2aci/releases/download/${DOCKER2ACI_VERSION}/docker2aci-${DOCKER2ACI_VERSION}.tar.gz" >/dev/null 2>&1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

        }
    
        static final class Stage implements Comparable<Stage> {
            final int stage;
            final int number;
            final Character patchNo;
    
            private Stage(int stage, int number, Character patchNo) {
                this.stage = stage;
                this.number = number;
                this.patchNo = patchNo;
            }
    
            static Stage from(int stage, String stageString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/VintageBuildModelController.java

            state.inState(Stage.Configured, () -> taskExecutionPreparer.scheduleRequestedTasks(gradle, selector, plan));
        }
    
        private void prepareSettings() {
            state.transitionIfNotPreviously(Stage.Created, Stage.SettingsLoaded, () -> settingsPreparer.prepareSettings(gradle));
        }
    
        private void prepareProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 04:13:57 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

                expectedStage1Output = "stage 1 buildscript\nstage 1 plugins\n"
            )
        }
    
        @Test
        fun `Dynamic(Static(Eval(pluginManagement, CloseTargetScope)))`() {
            val fragment =
                fragment("pluginManagement", """println("stage 1")""")
    
            val stage2 =
                fragment.source.map {
                    text("""println("stage 2")""")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top