A high-performance general-purpose compute library
lin_algebra/lu.cpp
/*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <arrayfire.h>
#include <cstdio>
#include <cstdlib>
using namespace af;
int main(int argc, char* argv[]) {
try {
// Select a device and display arrayfire info
int device = argc > 1 ? atoi(argv[1]) : 0;
af::setDevice(device);
array in = randu(5, 8);
af_print(in);
array lin = in.copy();
printf("Running LU InPlace\n");
array pivot;
luInPlace(pivot, lin);
af_print(lin);
af_print(pivot);
printf("Running LU with Upper Lower Factorization\n");
array lower, upper;
lu(lower, upper, pivot, in);
af_print(lower);
af_print(upper);
af_print(pivot);
} catch (af::exception& e) {
fprintf(stderr, "%s\n", e.what());
throw;
}
return 0;
}
A multi dimensional data container.
Definition: array.h:37
array copy() const
Perform deep copy of the array.
An ArrayFire exception class.
Definition: exception.h:22
virtual const char * what() const
Returns an error message for the exception in a string format.
Definition: exception.h:46
AFAPI void info()
AFAPI void setDevice(const int device)
Sets the current device.
Definition: algorithm.h:15
#define af_print(...)
Definition: util.h:148