org.bytedeco.tensorflow.RemoteMgr Maven / Gradle / Ivy
The newest version!
// Targeted by JavaCPP version 1.5.8: DO NOT EDIT THIS FILE
package org.bytedeco.tensorflow;
import org.bytedeco.tensorflow.Allocator;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.javacpp.presets.javacpp.*;
import static org.bytedeco.tensorflow.global.tensorflow.*;
// We need this forward declaration because we have circular dependency:
// Context -> RemoteMgr -> TensorHandle -> Context.
// TODO(fishx): Remove this once we remove Context dependency in TensorHandle.
@Namespace("tensorflow::eager") @Opaque @Properties(inherit = org.bytedeco.tensorflow.presets.tensorflow.class)
public class RemoteMgr extends Pointer {
/** Empty constructor. Calls {@code super((Pointer)null)}. */
public RemoteMgr() { super((Pointer)null); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public RemoteMgr(Pointer p) { super(p); }
}