<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Your program requires input in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042450#M20802</link>
    <description>&lt;P&gt;Your program requires input data to be in text files. The Excel files that you provided cannot be read as text files. You can zip up the CSV files and attach the zip file, instead.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jun 2014 16:36:00 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2014-06-17T16:36:00Z</dc:date>
    <item>
      <title>Linking problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042443#M20795</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I am trying to solve a linear system of equations using LAPACK ROUTINES and I have tried to link but some of the codes seem to work whiles others do not. I get the error when &amp;nbsp;use the CALL GESV.&amp;nbsp;&lt;BR /&gt;
	design.f90(477): error #6285: There is no matching specific subroutine for this&lt;BR /&gt;
	generic subroutine call. &amp;nbsp; [GESV]&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CALL GESV(xtemp, ztemp)&lt;BR /&gt;
	---------------------^&lt;BR /&gt;
	compilation aborted for design.f90 (code 1)&lt;/P&gt;

&lt;P&gt;This does not happen when i change CALL GESV to CALL GETRF but then CALL GETRS will also no work.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;xtemp is a 12 x 12 matrix whiles ztemp is a vector of 12 elements.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;This is the coding&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;		PROGRAM DESIGN
		
		USE Prop_mod
		USE blas95
		USE f95_precision
		USE lapack95	

		IMPLICIT NONE	

		!DECLARATIONS OF VARIABLES&lt;/PRE&gt;

&lt;P&gt;......&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;		DO i = 1, num 
			WRITE(30, '(*(G0.4, ",", :))') xtemp(i, :)
		ENDDO
		PAUSE
		
		ALLOCATE(ipiv(num))
		!CALL getrf(xtemp, ipiv)		
		!CALL getrs(xtemp, ipiv, ztemp)

&lt;/PRE&gt;

&lt;PRE class="brush:fortran;" style="font-size: 13.333333969116211px;"&gt;		CALL gesv(xtemp, ztemp)&lt;/PRE&gt;

&lt;PRE class="brush:fortran;"&gt;		
		WRITE(*, *)
		WRITE(*, *) xtemp
		WRITE(30, *)
		WRITE(30, *)
		DO i = 1, num 
			WRITE(31, '(*(G0.4, ",", :))') xtemp(i, :)
		ENDDO		
		PAUSE
		
		WRITE(*,*) ztemp
		PAUSE
		
		WRITE(*, *)&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;When i combine Call getrf and getrs, only getrf works and the solution subroutine "getrs" fails.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Call gesv does not work at all. I really need someones help on this.&lt;/P&gt;

&lt;P&gt;This is what i type to compile and link the codes&lt;/P&gt;

&lt;P&gt;C:\Program Files (x86)\Intel\Composer XE 2013 SP1\Projects&amp;gt;ifort Props_mod.f90 d&lt;BR /&gt;
	esign.f90 /traceback mkl_rt.lib mkl_blas95_ilp64.lib mkl_lapack95_ilp64.lib libi&lt;BR /&gt;
	omp5md.lib /exe:ex1.exe&lt;/P&gt;

&lt;P&gt;Am I not linking properly? I have tried all i know of but it is still not working.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 06:35:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042443#M20795</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-17T06:35:27Z</dc:date>
    </item>
    <item>
      <title>The xxyy_ilp64 libraries are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042444#M20796</link>
      <description>&lt;P&gt;The error #6285 messages are usually caused by using variables of incorrect types or having incorrect declaration statements. You posted snippets of code without including the declarations, and the lines that you omitted may be exactly the lines that contain errors. Without those lines being available, it impossible for us to help you.&lt;/P&gt;

&lt;P&gt;The xxyy_ilp64 libraries are for use with object files that call MKL routines with 8-byte integer arguments. If you use default (4-byte) integers, you must link against xxyy_lp64 libraries. Use the &lt;A href="https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor"&gt;MKL Link Line Advisor&lt;/A&gt; and avoid such errors.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 12:03:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042444#M20796</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-17T12:03:00Z</dc:date>
    </item>
    <item>
      <title>You could look up examples of</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042445#M20797</link>
      <description>&lt;P&gt;You could look up examples of gesv usage.&amp;nbsp; Your error in declaration of xtemp or ztemp won't be fixed by suppressing compiler checking and fiddling with link options.&lt;/P&gt;

&lt;P&gt;Type matching is rather picky; for example, it may not accept real and real(4) or real*4 as matching, so there are cases you could make up where suppressing the error could work, but it looks advisable for you to take advantage of the compile checking.&lt;/P&gt;

&lt;P&gt;As you're using ifort and apparently not 64-bit integers, you could start out with the -mkl link options and focus on getting your source code right.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 12:25:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042445#M20797</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2014-06-17T12:25:01Z</dc:date>
    </item>
    <item>
      <title>Thank you for all your help.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042446#M20798</link>
      <description>&lt;P&gt;Thank you for all your help. These are declarations i made.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;		
		REAL, DIMENSION(:,:), ALLOCATABLE :: xtemp, nxtemp
		
		INTEGER, DIMENSION(:), ALLOCATABLE :: tubes, passes, coldside, insert, shells
		INTEGER, DIMENSION(:), ALLOCATABLE :: htp, ctp, ztemp, ipiv&lt;/PRE&gt;

&lt;P&gt;I changed ztemp into nxtemp and the command run successfully but there was no solution to the Call statement.&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;		ALLOCATE(ztemp(num))
		ALLOCATE(xtemp(num, num))
ALLOCATE(nxtemp(num, 1))
		PRINT *, ztemp
		WRITE(*, *)
		
		PRINT *, xtemp
		WRITE(*, *)
		
		DO i = 1, num 
			WRITE(30, '(*(G0.4, ",", :))') xtemp(i, :)
		ENDDO
		
		ALLOCATE(ipiv(num))
		nxtemp = RESHAPE(ztemp, (/num, 1/))

		CALL gesv(xtemp, nxtemp, ipiv, info)
		PRINT *, 'info = ', info, 'if = 0 then good  else problem'
		WRITE(*, *)

		!CALL getrf(xtemp, ipiv)	
		
		PRINT *, xtemp
		PAUSE
		
		!CALL getrs(xtemp, ipiv, nxtemp)
		!CALL sgetrs('N', num, 0, xtemp, num, ipiv, nxtemp, num, info)   

		DO i = 1, num 
			WRITE(31, '(*(G0.4, ",", :))') xtemp(i, :)
		ENDDO		
		
		WRITE(*, *)
		WRITE(*,*) ztemp
		WRITE(*, *)
	
		WRITE(*, *) nxtemp
		&lt;/PRE&gt;

&lt;P&gt;I also included a /check in command prompt and made the other changes as suggested and this are the errors that came up.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;forrtl: warning (402): fort: (1): In call to I/O Write routine, an array temporary was created for argument #1&lt;/STRONG&gt;&lt;BR /&gt;
	&lt;EM&gt;(this is repeated 12 times when /check is included but if not this does not show up)&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;info = 12&lt;EM&gt; &lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;(This is the data from the call statement)&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;But there was no solution to the Call statement. Is there something wrong with the arrays i am using in the call statement?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 15:04:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042446#M20798</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-17T15:04:53Z</dc:date>
    </item>
    <item>
      <title>In the command prompt - It</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042447#M20799</link>
      <description>&lt;P&gt;In the command prompt - It compiled alright but errors came at run time&lt;/P&gt;

&lt;P&gt;C:\Program Files (x86)\Intel\Composer XE 2013 SP1\Projects&amp;gt;ifort Props_mod.f90 d&lt;BR /&gt;
	esign.f90 /traceback /check mkl_rt.lib mkl_blas95_lp64.lib mkl_lapack95_lp64.lib&lt;BR /&gt;
	&amp;nbsp;libiomp5md.lib /exe:ex1.exe&lt;BR /&gt;
	Intel(R) Visual Fortran Intel(R) 64 Compiler XE for applications running on Inte&lt;BR /&gt;
	l(R) 64, Version 14.0.1.139 Build 20131008&lt;BR /&gt;
	Copyright (C) 1985-2013 Intel Corporation. &amp;nbsp;All rights reserved.&lt;/P&gt;

&lt;P&gt;Microsoft (R) Incremental Linker Version 11.00.61030.0&lt;BR /&gt;
	Copyright (C) Microsoft Corporation. &amp;nbsp;All rights reserved.&lt;/P&gt;

&lt;P&gt;-out:ex1.exe&lt;BR /&gt;
	-subsystem:console&lt;BR /&gt;
	-incremental:no&lt;BR /&gt;
	Props_mod.obj&lt;BR /&gt;
	design.obj&lt;BR /&gt;
	mkl_rt.lib&lt;BR /&gt;
	mkl_blas95_lp64.lib&lt;BR /&gt;
	mkl_lapack95_lp64.lib&lt;BR /&gt;
	libiomp5md.lib&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 15:24:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042447#M20799</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-17T15:24:10Z</dc:date>
    </item>
    <item>
      <title>Not much can be said about</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042448#M20800</link>
      <description>&lt;P&gt;Not much can be said about how a program should behave while running when (i) you have not presented the complete program and/or (ii) the program contains errors. Please present a complete example source file (plus include files and data files if needed) that can be compiled and run.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;SPAN style="font-size: 11.818181991577148px; line-height: 16.363636016845703px;"&gt;I changed ztemp into nxtemp and the command run successfully but there was no solution to the Call statement.&amp;nbsp;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I cannot make sense of that sentence. Which command ran successfully? What is a "solution to the Call statement"?&lt;/P&gt;

&lt;P&gt;Helpful comments were made in response to your post. What is your response to those comments?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 16:02:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042448#M20800</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-17T16:02:00Z</dc:date>
    </item>
    <item>
      <title>Thanks for  your comments.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042449#M20801</link>
      <description>&lt;P&gt;Thanks for &amp;nbsp;your comments.&lt;/P&gt;

&lt;P&gt;Sorry about that. The files are attached. I could not upload as a CSV file so i changed it to xls file before uploading.&amp;nbsp;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;SPAN style="color: rgb(96, 96, 96); background-color: rgb(238, 238, 238);"&gt;I changed ztemp into nxtemp and the command run successfully but there was no solution to the Call statement.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;Calling ifort in command prompt worked well after i reshaped ztemp into nxtemp, t&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;he Call statement could not solve the system of linear equations.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 16:19:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042449#M20801</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-17T16:19:57Z</dc:date>
    </item>
    <item>
      <title>Your program requires input</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042450#M20802</link>
      <description>&lt;P&gt;Your program requires input data to be in text files. The Excel files that you provided cannot be read as text files. You can zip up the CSV files and attach the zip file, instead.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 16:36:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042450#M20802</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-17T16:36:00Z</dc:date>
    </item>
    <item>
      <title>data</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042451#M20803</link>
      <description>&lt;P&gt;data&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 16:53:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042451#M20803</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-17T16:53:08Z</dc:date>
    </item>
    <item>
      <title>Input data (from Unit=*) are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042452#M20804</link>
      <description>&lt;P&gt;In addition to the data in the two files provided, the program needs input data (to satisfy read(*,...) statements in the program) to run.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2014 17:53:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042452#M20804</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-17T17:53:00Z</dc:date>
    </item>
    <item>
      <title>The other are user input data</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042453#M20805</link>
      <description>&lt;P&gt;These are the user input data. For example put in these data in the order in which they are asked:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;C:\Program Files (x86)\Intel\Composer XE 2013 SP1\Projects&amp;gt;ex1&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER THE NUMBER OF HOT STREAMS &amp;nbsp;2&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ENTER THE NUMBER OF COLD STREAMS &amp;nbsp;1&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER THE NUMBER OF MIXING POINTS FOR ...&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... HOT STREAM &amp;nbsp;1&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;... COLD STREAM &amp;nbsp;2&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER THE NUMBER OF HEAT EXCHANGERS &amp;nbsp;3&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		&amp;nbsp;ENTER THE INPUT DATA FOR THE HOT STREAMS&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;HOT STREAM 1 &amp;nbsp;- Kero&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INLET FLOWRATE (kg/s) = &amp;nbsp;30&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INLET TEMPERATURE (C) = &amp;nbsp;166&lt;BR /&gt;
		&amp;nbsp;HOT STREAM 2 &amp;nbsp;- OverH&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INLET FLOWRATE (kg/s) = &amp;nbsp;43&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INLET TEMPERATURE (C) = &amp;nbsp;290&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;ENTER THE INPUT DATA FOR THE COLD STREAMS&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;COLD STREAM 1 &amp;nbsp;- Crude1&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INLET FLOWRATE (kg/s) = &amp;nbsp;193&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INLET TEMPERATURE (C) = &amp;nbsp;27&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;HEAT EXCHANGER INFORMATION FOR EACH STREAM&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		&amp;nbsp;CALCULATIONS FOR EACH HEAT EXCHANGER&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;STARTING CALCULATION ...&lt;/P&gt;

	&lt;P&gt;&lt;BR /&gt;
		&amp;nbsp;FOR HEAT EXCHANGER &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ENTER THE HOT STREAM ID 1&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IS THERE BRANCHING? Y or N n&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BYPASS FRACTION (BTN 0 AND 1) 0&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER THE COLD STREAM ID 1&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IS THERE BRANCHING? Y or N n&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BYPASS FRACTION (BTN 0 AND 1) 0&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;FOR HEAT EXCHANGER &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ENTER THE HOT STREAM ID 2&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IS THERE BRANCHING? Y or N y&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ENTER NUMBER OF BRANCHES FOR HOT ID &amp;nbsp;22&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;% OF MASS FLOW IN BRANCH &amp;nbsp;130&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BYPASS FRACTION (BTN 0 AND 1) 0&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER THE COLD STREAM ID 1&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IS THERE BRANCHING? Y or N y&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER NUMBER OF BRANCHES FOR FOR COLD ID &amp;nbsp;12&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;% OF MASS FLOW IN BRANCH &amp;nbsp;138&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BYPASS FRACTION (BTN 0 AND 1) 0&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;&lt;/P&gt;

	&lt;P&gt;&amp;nbsp;FOR HEAT EXCHANGER &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ENTER THE HOT STREAM ID 2&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BYPASS FRACTION (BTN 0 AND 1) 0&lt;/P&gt;

	&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ENTER THE COLD STREAM ID 1&lt;BR /&gt;
		&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BYPASS FRACTION (BTN 0 AND 1) 0&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 18 Jun 2014 00:11:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042453#M20805</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-18T00:11:00Z</dc:date>
    </item>
    <item>
      <title>The 12 X 12 matrix that you</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042454#M20806</link>
      <description>&lt;P&gt;The 12 X 12 matrix that you pass to &lt;STRONG&gt;gesv&lt;/STRONG&gt; is singular, which is why the value of &lt;STRONG&gt;info&lt;/STRONG&gt; is not zero. You have to examine your problem and program logic to determine why the matrix is singular.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2014 02:42:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042454#M20806</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-18T02:42:30Z</dc:date>
    </item>
    <item>
      <title>Thank you mecej4 for all your</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042455#M20807</link>
      <description>&lt;P&gt;Thank you mecej4 for all your help.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I am re-examing the matrix but Is there another fortran routine to use in solving this singular matrix?&lt;/P&gt;

&lt;P&gt;I am &amp;nbsp;totally stuck and need a way out&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2014 14:08:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042455#M20807</guid>
      <dc:creator>Elvis_T_</dc:creator>
      <dc:date>2014-06-18T14:08:19Z</dc:date>
    </item>
    <item>
      <title>Quote:Elvis T. wrote:I am re</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042456#M20808</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Elvis T. wrote:&lt;BR /&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I am re-examining the matrix but Is there another Fortran routine to use in solving this singular matrix?&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Your 12th equation, for the input data set that you gave in #11, has all coefficients equal to zero. This indicates that, in effect, you have 11 equations for 12 unknowns. For most well-formulated engineering/physics problems, this should not happen. What did that 12th equation come from? Why are all the coefficients of that equation zero? Is that physically possible? Is there another physical law or constraint at play, which has not been represented with a corresponding equation?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Rather than look for magical solution methods, find the error in your problem formulation and fix it. Otherwise, you will be in the unpleasant situation of having to choose from an infinite set of "solutions", all of which are probably incorrect from a physical point of view.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2014 14:22:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Linking-problem/m-p/1042456#M20808</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-06-18T14:22:08Z</dc:date>
    </item>
  </channel>
</rss>

