org.bytedeco.tensorflowlite.ScopedRuntimeInstrumentationProfile Maven / Gradle / Ivy
// Targeted by JavaCPP version 1.5.7: DO NOT EDIT THIS FILE
package org.bytedeco.tensorflowlite;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.tensorflowlite.global.tensorflowlite.*;
@Namespace("tflite") @NoOffset @Properties(inherit = org.bytedeco.tensorflowlite.presets.tensorflowlite.class)
public class ScopedRuntimeInstrumentationProfile extends ScopedProfile {
static { Loader.load(); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public ScopedRuntimeInstrumentationProfile(Pointer p) { super(p); }
public ScopedRuntimeInstrumentationProfile(Profiler profiler, @Cast("const char*") BytePointer tag) { super((Pointer)null); allocate(profiler, tag); }
private native void allocate(Profiler profiler, @Cast("const char*") BytePointer tag);
public ScopedRuntimeInstrumentationProfile(Profiler profiler, String tag) { super((Pointer)null); allocate(profiler, tag); }
private native void allocate(Profiler profiler, String tag);
public native void set_runtime_status(@Cast("int64_t") long delegate_status, @Cast("int64_t") long interpreter_status);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy