Tagged Questions
0
votes
1answer
39 views
can not correctly pass an array when calling a fortran function from c
I need to call a fortran function from c and one of the parameter is an array, the c code is:
float x[18] = {...};
pot = f_(x);
where x is an float array with 18 elements, and the fortran code is
...
0
votes
2answers
41 views
Makefile confusion with fortran and c
this is my first time making a make file. I'm a little confused since my fortran code uses some functions defined in c source files. This is what I've written so far:
CC = ...
1
vote
3answers
65 views
Undefined reference to main fortran program
I am writing a fortran code for benchmarking three loop kernels:
program Kernel_benchmark
implicit none
double precision,dimension (:),save,allocatable:: a,b,c,d,x,y
...
0
votes
0answers
58 views
Syntax error in Fortran while using a timing function implemented in C
Hi I've been given a source code in C , which I need to use to calculate the time taken for my code to run in fortran. The C source code containing the timing function is given below:
#include ...
2
votes
3answers
168 views
Cannot get data from a returned C float pointer in Fortran 90
I am calling a C function from a Fortran 90 program (I have to use Fortran 90). This C function takes a couple arguments and returns a float pointer. I cannot seem to print the returned data correctly ...
0
votes
1answer
243 views
MPI undefined object references
I'm trying to install a program (the Parallel Ice Sheet Model, or PISM) which uses MPI. I keep running into the errors
libpismutil.so: undefined reference to `ompi_mpi_cxx_op_intercept'
...
1
vote
3answers
205 views
METIS seg faults when run from Fortran
I'm trying to use the METIS library for mesh partitioning as part of a Fortran program I've written for finite element computations. METIS is written in C but it's supposed to work just fine with ...
5
votes
1answer
152 views
A Makefile Puzzle: Multiple Programming Languages
I have a simple test Makefile:
hello: hello.o
.SUFFIXES: .c .f90 .o
.f90.o:
pgf90 -c -o $@ $<
.c.o:
cc -c -o $@ $<
You don't have to tell me that it having a foo.c and a foo.f90 in ...
0
votes
3answers
186 views
How to use the same array on different processors using MPI
I would like to have the same array called hist(1:1000) on different processors using OpenMPI, such that when one processor modifies hist this modification is updated in the rest of the processors.
I ...
0
votes
1answer
257 views
C-Fortran character string interoperability
Good day. Sorry for maybe not so understandable definition of my problem and maybe some inaccuracies - I'm just starting to try myself in programming. Still, I'll try my best to explain everything ...
0
votes
1answer
97 views
idb cannot find function — any hint?
I found that idb cannot step into one of my functions.
I am linking a c-program (main.c) with a fortran90 function(func1), that belong to a module(mod1), that links to another function(func2) in ...
3
votes
1answer
522 views
Fortran accuracy and speed vs. C
This subject has probably been discussed hundreds of times. I'm not trying to claim
any language is worse or better. I'm just trying to learn how to accelerate my C codes.
So here are two codes to ...
3
votes
1answer
205 views
Fortran 2003 bindings to library in C: how to translate enums and #defines?
I am writing Fortran bindings for C library.
What is best practice on translating constants defined (in library headers) using enum, e.g.
typedef enum cufftType_t {
CUFFT_R2C = 0x2a, // Real ...
2
votes
1answer
395 views
How does Fortran return arrays?
The subroutine Rule_Tn in the Fortran library CUBPACK needs a parameter Integrand describing the integrated vector function. It's a
INTERFACE
FUNCTION Integrand(NF,X) RESULT(Value)
USE ...
4
votes
2answers
248 views
Reading C data file in F90
I am not an expert in programming but have some experience. It is more than a week that I am trying to read a data file from C into a Fortran program. C program saves a matrix in a bin format data ...
