Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for compile_time_us (0.16 sec)

  1. tensorflow/compiler/jit/device_compilation_profiler.cc

              .first;
    
      const uint64 compile_time_s = compile_time_us / 1.0e6;
      it->second.compile_count++;
      it->second.cumulative_compile_time_us += compile_time_us;
      VLOG(1) << "Compiled " << function_name << " " << it->second.compile_count
              << " times, compile time: " << compile_time_us
              << " us, cumulative: " << it->second.cumulative_compile_time_us
              << " us ("
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_activity_listener_test.cc

      EXPECT_EQ(listener()->jit_compilation_activity().compile_count(), 2);
    
      EXPECT_GT(listener()->jit_compilation_activity().compile_time_us(), 0);
      EXPECT_EQ(listener()->jit_compilation_activity().cumulative_compile_time_us(),
                first_compile_time +
                    listener()->jit_compilation_activity().compile_time_us());
    }
    
    }  // namespace
    }  // namespace tensorflow
    
    int main(int argc, char** argv) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.h

      // accumulates the compile time for the given cluster. Also broadcasts an
      // XlaJitCompilationActivity.
      virtual Status RegisterCompilation(const NameAttrList& function,
                                         int64_t compile_time_us,
                                         bool used_persistent_cache);
    
      void IncrementOngoingAsyncCompilations();
      void DecrementOngoingAsyncCompilations();
      int64_t GetNumOngoingAsyncCompilations() const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_activity.proto

      string cluster_name = 1;
    
      // The number of time this cluster has been compiled.
      int32 compile_count = 2;
    
      // Microseconds spent in the individual compilation being reported.
      int64 compile_time_us = 3;
    
      // Total microseconds spent in (re-)compiling this cluster so far.
      int64 cumulative_compile_time_us = 4;
    
      // Whether a persistent compilation cache entry was used.
      bool used_persistent_cache = 5;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler.h

      const uint64 compile_end_us = env->NowMicros();
      const uint64 compile_time_us = compile_end_us - compile_start_us;
    
      device_compiler_internal::LogOnceXlaCompiledFirstCluster();
      TF_RETURN_IF_ERROR(profiler->RegisterCompilation(
          function, compile_time_us, loaded_executable.has_value()));
      return cache_value;
    }
    
    template <typename ExecutableType, typename ClientType>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler_test.cc

                   int64_t current_request_count),
                  (override));
      MOCK_METHOD(Status, RegisterCompilation,
                  (const NameAttrList& function, int64_t compile_time_us,
                   bool used_persistent_cache),
                  (override));
    };
    
    class DeviceCompilerTest : public ::testing::Test {
     protected:
      void SetUp() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top