Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TFEContextDeleter (0.2 sec)

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

      // Runtime is not copyable
      Runtime(const Runtime&) = delete;
      Runtime& operator=(const Runtime&) = delete;
    
      struct TFEContextDeleter {
        void operator()(TFE_Context* p) const { TFE_DeleteContext(p); }
      };
      std::unique_ptr<TFE_Context, TFEContextDeleter> ctx_;
    };
    
    }  // namespace cc
    }  // namespace experimental
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.5K bytes
    - Viewed (0)
Back to top