MCPcopy Create free account
hub / github.com/apache/tvm / wrapBytes

Method wrapBytes

jvm/core/src/main/java/org/apache/tvm/rpc/Utils.java:53–57  ·  view source on GitHub ↗
(byte[] bytes)

Source from the content-addressed store, hash-verified

51 }
52
53 public static ByteBuffer wrapBytes(byte[] bytes) {
54 ByteBuffer bb = ByteBuffer.wrap(bytes);
55 bb.order(ByteOrder.LITTLE_ENDIAN);
56 return bb;
57 }
58
59 public static byte[] toBytes(int number) {
60 ByteBuffer bb = ByteBuffer.allocate(4);

Callers 5

recvStringMethod · 0.95
runMethod · 0.95
runMethod · 0.95
runMethod · 0.95
connectToTrackerMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected