getDataAsDoubleArray() — pytorch Function Reference
Architecture documentation for the getDataAsDoubleArray() function in Tensor.java from the pytorch codebase.
Entity Profile
Dependency Diagram
graph TD 720062b4_841b_3601_05ad_7b1f7a4c53d8["getDataAsDoubleArray()"] 491c598a_5664_579b_bacd_b3b5d850f172["getDataAsDoubleArray()"] 491c598a_5664_579b_bacd_b3b5d850f172 -->|calls| 720062b4_841b_3601_05ad_7b1f7a4c53d8 491c598a_5664_579b_bacd_b3b5d850f172["getDataAsDoubleArray()"] 720062b4_841b_3601_05ad_7b1f7a4c53d8 -->|calls| 491c598a_5664_579b_bacd_b3b5d850f172 style 720062b4_841b_3601_05ad_7b1f7a4c53d8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
android/pytorch_android/src/main/java/org/pytorch/Tensor.java lines 665–671
@Override
public double[] getDataAsDoubleArray() {
data.rewind();
double[] arr = new double[data.remaining()];
data.get(arr);
return arr;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does getDataAsDoubleArray() do?
getDataAsDoubleArray() is a function in the pytorch codebase.
What does getDataAsDoubleArray() call?
getDataAsDoubleArray() calls 1 function(s): getDataAsDoubleArray.
What calls getDataAsDoubleArray()?
getDataAsDoubleArray() is called by 1 function(s): getDataAsDoubleArray.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free