Skip to content

Commit

Permalink
Update gen after bytedeco/javacpp@283e87a
Browse files Browse the repository at this point in the history
  • Loading branch information
HGuillemet committed Aug 18, 2023
1 parent bee1efd commit 8fe76f8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class IdentityImpl extends IdentityImplCloneable {
public IdentityImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public IdentityImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public IdentityImpl position(long position) {
return (IdentityImpl)super.position(position);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class LogSigmoidImpl extends LogSigmoidImplCloneable {
public LogSigmoidImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public LogSigmoidImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public LogSigmoidImpl position(long position) {
return (LogSigmoidImpl)super.position(position);
Expand Down
2 changes: 1 addition & 1 deletion pytorch/src/gen/java/org/bytedeco/pytorch/MishImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class MishImpl extends MishImplCloneable {
public MishImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public MishImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public MishImpl position(long position) {
return (MishImpl)super.position(position);
Expand Down
2 changes: 1 addition & 1 deletion pytorch/src/gen/java/org/bytedeco/pytorch/Resolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Resolver extends Pointer {
public Resolver(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public Resolver(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public Resolver position(long position) {
return (Resolver)super.position(position);
Expand Down
2 changes: 1 addition & 1 deletion pytorch/src/gen/java/org/bytedeco/pytorch/SiLUImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SiLUImpl extends SiLUImplCloneable {
public SiLUImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public SiLUImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public SiLUImpl position(long position) {
return (SiLUImpl)super.position(position);
Expand Down
2 changes: 1 addition & 1 deletion pytorch/src/gen/java/org/bytedeco/pytorch/SigmoidImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SigmoidImpl extends SigmoidImplCloneable {
public SigmoidImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public SigmoidImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public SigmoidImpl position(long position) {
return (SigmoidImpl)super.position(position);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Softmax2dImpl extends Softmax2dImplCloneable {
public Softmax2dImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public Softmax2dImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public Softmax2dImpl position(long position) {
return (Softmax2dImpl)super.position(position);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SoftsignImpl extends SoftsignImplCloneable {
public SoftsignImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public SoftsignImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public SoftsignImpl position(long position) {
return (SoftsignImpl)super.position(position);
Expand Down
2 changes: 1 addition & 1 deletion pytorch/src/gen/java/org/bytedeco/pytorch/TanhImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class TanhImpl extends TanhImplCloneable {
public TanhImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public TanhImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public TanhImpl position(long position) {
return (TanhImpl)super.position(position);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class TanhshrinkImpl extends TanhshrinkImplCloneable {
public TanhshrinkImpl(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public TanhshrinkImpl(Pointer p) { super(p); }
private native void allocate();
@SharedPtr private native void allocate();
private native void allocateArray(long size);
@Override public TanhshrinkImpl position(long position) {
return (TanhshrinkImpl)super.position(position);
Expand Down

0 comments on commit 8fe76f8

Please sign in to comment.