-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix mapping of
torch::ExpandingArrayWithOptionalElem
in presets …
…for PyTorch (issue #1250)
- Loading branch information
Showing
18 changed files
with
132 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
pytorch/src/gen/java/org/bytedeco/pytorch/LongOptionalVector.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// Targeted by JavaCPP version 1.5.8-SNAPSHOT: DO NOT EDIT THIS FILE | ||
|
||
package org.bytedeco.pytorch; | ||
|
||
import org.bytedeco.pytorch.Allocator; | ||
import org.bytedeco.pytorch.Function; | ||
import org.bytedeco.pytorch.Module; | ||
import java.nio.*; | ||
import org.bytedeco.javacpp.*; | ||
import org.bytedeco.javacpp.annotation.*; | ||
|
||
import static org.bytedeco.javacpp.presets.javacpp.*; | ||
import static org.bytedeco.openblas.global.openblas_nolapack.*; | ||
import static org.bytedeco.openblas.global.openblas.*; | ||
|
||
import static org.bytedeco.pytorch.global.torch.*; | ||
|
||
@Name("std::vector<c10::optional<int64_t> >") @Properties(inherit = org.bytedeco.pytorch.presets.torch.class) | ||
public class LongOptionalVector extends Pointer { | ||
static { Loader.load(); } | ||
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */ | ||
public LongOptionalVector(Pointer p) { super(p); } | ||
public LongOptionalVector(LongOptional value) { this(1); put(0, value); } | ||
public LongOptionalVector(LongOptional ... array) { this(array.length); put(array); } | ||
public LongOptionalVector() { allocate(); } | ||
public LongOptionalVector(long n) { allocate(n); } | ||
private native void allocate(); | ||
private native void allocate(@Cast("size_t") long n); | ||
public native @Name("operator =") @ByRef LongOptionalVector put(@ByRef LongOptionalVector x); | ||
|
||
public boolean empty() { return size() == 0; } | ||
public native long size(); | ||
public void clear() { resize(0); } | ||
public native void resize(@Cast("size_t") long n); | ||
|
||
@Index(function = "at") public native @ByRef LongOptional get(@Cast("size_t") long i); | ||
public native LongOptionalVector put(@Cast("size_t") long i, LongOptional value); | ||
|
||
public native @ByVal Iterator insert(@ByVal Iterator pos, @ByRef LongOptional value); | ||
public native @ByVal Iterator erase(@ByVal Iterator pos); | ||
public native @ByVal Iterator begin(); | ||
public native @ByVal Iterator end(); | ||
@NoOffset @Name("iterator") public static class Iterator extends Pointer { | ||
public Iterator(Pointer p) { super(p); } | ||
public Iterator() { } | ||
|
||
public native @Name("operator ++") @ByRef Iterator increment(); | ||
public native @Name("operator ==") boolean equals(@ByRef Iterator it); | ||
public native @Name("operator *") @ByRef @Const LongOptional get(); | ||
} | ||
|
||
public LongOptional[] get() { | ||
LongOptional[] array = new LongOptional[size() < Integer.MAX_VALUE ? (int)size() : Integer.MAX_VALUE]; | ||
for (int i = 0; i < array.length; i++) { | ||
array[i] = get(i); | ||
} | ||
return array; | ||
} | ||
@Override public String toString() { | ||
return java.util.Arrays.toString(get()); | ||
} | ||
|
||
public LongOptional pop_back() { | ||
long size = size(); | ||
LongOptional value = get(size - 1); | ||
resize(size - 1); | ||
return value; | ||
} | ||
public LongOptionalVector push_back(LongOptional value) { | ||
long size = size(); | ||
resize(size + 1); | ||
return put(size, value); | ||
} | ||
public LongOptionalVector put(LongOptional value) { | ||
if (size() != 1) { resize(1); } | ||
return put(0, value); | ||
} | ||
public LongOptionalVector put(LongOptional ... array) { | ||
if (size() != array.length) { resize(array.length); } | ||
for (int i = 0; i < array.length; i++) { | ||
put(i, array[i]); | ||
} | ||
return this; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.