Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TFEContextOptionsDeleter (0.4 sec)

  1. tensorflow/cc/experimental/base/public/runtime_builder.h

      RuntimeBuilder(const RuntimeBuilder&) = delete;
      RuntimeBuilder& operator=(const RuntimeBuilder&) = delete;
    
      struct TFEContextOptionsDeleter {
        void operator()(TFE_ContextOptions* p) const {
          TFE_DeleteContextOptions(p);
        }
      };
      std::unique_ptr<TFE_ContextOptions, TFEContextOptionsDeleter> options_;
    };
    
    inline RuntimeBuilder& RuntimeBuilder::SetUseTFRT(bool use_tfrt) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3K bytes
    - Viewed (0)
Back to top