mirror of
				https://github.com/PaddlePaddle/FastDeploy.git
				synced 2025-10-31 20:02:53 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			262 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			262 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "../Eigen/LU"
 | |
| 
 | |
| #ifdef EIGEN_SHOULD_FAIL_TO_BUILD
 | |
| #define SCALAR int
 | |
| #else
 | |
| #define SCALAR float
 | |
| #endif
 | |
| 
 | |
| using namespace Eigen;
 | |
| 
 | |
| int main() {
 | |
|   PartialPivLU<Matrix<SCALAR, Dynamic, Dynamic> > lu(
 | |
|       Matrix<SCALAR, Dynamic, Dynamic>::Random(10, 10));
 | |
| }
 | 
