Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for collectFiles (0.12 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/OutputSnapshotUtilTest.groovy

            then:
            collectFiles(filteredOutputs) == [outputDir]
    
            when:
            def outputDirFile = outputDir.file("in-output-dir").createFile()
            virtualFileSystem.invalidateAll()
            def afterExecution = snapshotOutput(outputDir)
            filteredOutputs = filterOutputAfterExecution(EMPTY, beforeExecution, afterExecution)
            then:
            collectFiles(filteredOutputs) == [outputDir, outputDirFile]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_experimental.h

                                                       TF_Status* status);
    
    // Aborts all ongoing collectives with the specified status. After abortion,
    // subsequent collectives will error with this status immediately. To reset the
    // collectives, create a new EagerContext.
    //
    // This is intended to be used when a peer failure is detected.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib_test.cc

      EXPECT_NE(TF_GetCode(status.get()), TF_CANCELLED);
      EXPECT_EQ(TF_GetCode(status.get()), TF_INVALID_ARGUMENT);
      EXPECT_THAT(TF_Message(status.get()), HasSubstr("assertion failed"));
    
      // Note that future collectives with the same context do not work at the
      // moment; once canceled, the collective executor requires the program to be
      // restarted / context to be reset.
    }
    
    TEST(PARALLEL_DEVICE_LIB, TestDifferentShapes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                            const int in_flight_nodes_limit)
          : status_(TF_NewStatus()),
            // If the context's default exector is set to async, re-using that in
            // each thread would cause collectives to deadlock. For consistency we
            // create a new sync executor for every thread.
            //
            // TODO(allenl): We should have an async API that works with the
            // parallel device.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

      }
      return &it->second;
    }
    
    void RunInThreadPoolIfCollectivesPresent(
        const XlaCompiler::CompilationResult& compilation_result,
        std::function<void()> execution_fn) {
      // If we are using collectives, we need to run in a separate threadpool.
      if (compilation_result.collective_info.has_value()) {
        GetOrCreateThreadPoolForCollective(*compilation_result.collective_info)
            ->Schedule(execution_fn);
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top