File: tsgEvaluate.m

package info (click to toggle)
tasmanian 8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,852 kB
  • sloc: cpp: 34,523; python: 7,039; f90: 5,080; makefile: 224; sh: 64; ansic: 8
file content (66 lines) | stat: -rw-r--r-- 1,934 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
function [result] = tsgEvaluate(lGrid, mX)
%
% [result] = tsgEvaluate(lGrid, points)
%
% evaluates the intepolant at the points of interest and returns the result
% this should be called after the grid has been created and after values
% have been loaded
%
% INPUT:
%
% lGrid: a grid list created by tsgMakeXXX(...)
%
% mX: an array of size [num_x, dimensions]
%     specifies the points where the interpolant should be evaluated
%     Note: do not confuse points here with the nodes of the grid
%               here points are user specified points to evaluate the
%               interpolant (or approximation)
%
% NOTE: if lGrid has a field gpuDevice and if Tasmanian is build with
%       CUBLAS or CUDA options, then this will attempt to use the GPU
%       for acceleration. The gpuDevice should be an integer corresponding
%       to a valid Nvidia CUDA device, run tsgCoreTests() to see the
%       device list visible to Tasmanian and the corresponding number
%
% OUTPUT:
%
% result: an array of size [num_x, iOut]
%         the values of the interpolant at the corresponding points
%

[sFiles, sTasGrid] = tsgGetPaths();
[sFileG, sFileX, sFileV, sFileO, sFileW, sFileC] = tsgMakeFilenames(lGrid);

sCommand = [sTasGrid,' -evaluate'];

sCommand = [sCommand, ' -gridfile ', sFileG];

tsgWriteMatrix(sFileX, mX);

sCommand = [sCommand, ' -xf ', sFileX];
lClean.sFileX = 1;

sCommand = [sCommand, ' -of ', sFileO];
lClean.sFileO = 1;

if (isfield(lGrid, 'gpuDevice'))
    sCommand = [sCommand, ' -gpuid ', num2str(lGrid.gpuDevice)];
end

[status, cmdout] = system(sCommand);

if (max(size(strfind(cmdout, 'ERROR'))) ~= 0)
    disp(cmdout);
    error('The tasgrid execurable returned an error, see above');
    return;
else
    if (~ isempty(cmdout))
        fprintf(1, ['Warning: Command had non-empty output:\n']);
        disp(cmdout);
    end
    [result] = tsgReadMatrix(sFileO);
end

tsgCleanTempFiles(lGrid, lClean);

end