- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ImmediateExecutionContext (0.13 sec)
-
tensorflow/c/eager/immediate_execution_context.h
#endif // !IS_MOBILE_PLATFORM protected: explicit ImmediateExecutionContext(AbstractContextKind kind) : AbstractContext(kind) {} ~ImmediateExecutionContext() override {} }; namespace internal { struct ImmediateExecutionContextDeleter { void operator()(ImmediateExecutionContext* p) const { if (p != nullptr) { p->Release(); } } };
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 12.3K bytes - Viewed (0) -
tensorflow/c/eager/immediate_execution_operation.h
#include "tensorflow/core/platform/casts.h" #include "tensorflow/core/platform/status.h" #include "tensorflow/core/util/managed_stack_trace.h" struct TFE_Op; namespace tensorflow { class ImmediateExecutionContext; class AbstractOpAttrs; // Abstract interface to an operation. class ImmediateExecutionOperation : public AbstractOperation { public: virtual void Clear() = 0; // Returns the inputs of this op.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 3.6K bytes - Viewed (0) -
tensorflow/c/eager/immediate_execution_distributed_manager.h
#include <cstdint> #include <string> #include "tensorflow/core/platform/status.h" namespace tsl { class CoordinationServiceAgent; } namespace tensorflow { class ImmediateExecutionContext; class ServerDef; class WorkerEnv; class WorkerCacheInterface; class ImmediateExecutionDistributedManager { public: virtual ~ImmediateExecutionDistributedManager() {}
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 2.9K bytes - Viewed (0) -
tensorflow/c/eager/c_api.cc
// it to implement custom device methods. class CAPICustomDeviceTensorHandle : public tensorflow::CustomDeviceTensorHandle { public: CAPICustomDeviceTensorHandle(tensorflow::ImmediateExecutionContext* context, tensorflow::CustomDevice* device, tensorflow::DataType dtype, void* data, TFE_CustomDeviceTensorHandleMethods methods)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 43.9K bytes - Viewed (0)