similar to: Compile error gfortran-4.6

Displaying 20 results from an estimated 100 matches similar to: "Compile error gfortran-4.6"

2013 Jun 08
2
Compile error with gfortran-4.6
Dears, I am writing a code in Fortran using OpenMP directives. When compiling the code in gfortran 4.4 does not occur any problem. When compiling the code in gfortran 4.6, an error message appears. In other compilers the error does not occur. A small example. ## Code in Fortran        subroutine hello()        implicit none        integer :: nthreads, tid        integer ::
2016 May 22
2
Paquete calculo de tamaño muestral
Hola a todos: Necesito saber si alguien tiene alguna idea de un paquete con múltiples funciones (cálculos) para determinar el tamaño de la muestra (particularmente de estudios de psicología y ciencias sociales). De antemano agradezco la atención. Saludo desde Brasil *Guilherme Amorim Homem de Abreu Loureiro* Agronomist Engineer *CREA-BA: 051511013-2* Master of Science in Crop Production, Soil
2015 Sep 25
2
Asterisk => Mediant 1000 (AudioCodes) => PSTN (E1)
Does anyone have any information for me? Welinghton. Citando Welinghton Magno Guimaraes <welinghton.guimaraes at ufvjm.edu.br>: > Hello! > ? > I am setting up an Asterisk server with a Mediant 1000 (Audiocodes) > to make external links. Does anyone have any manual or instructions on > how to proceed? > ? > Asterisk ?=>? Mediant 1000 (AudioCodes) ?=>?
2012 Nov 14
0
Protocol for setting default number of cores
We recently posted randomForestSRC on CRAN. It uses OpenMP in the native code extensively. We set the default number of cores to two (2), but we typically run it at the maximum (omp_get_max_threads()) during analysis. Currently, users need to set options(), set an environment variable, or edit their .Rprofile to use more than two cores. We followed the protocol for mc.cores in mclapply() in
2014 Aug 11
2
[LLVMdev] [RFC] OpenMP offload infrastructure
Hi John, Thank you for the comments. I am addressing some of them bellow. Regards, Samuel 2014-08-11 9:36 GMT-04:00 John Leidel (jleidel) <jleidel at micron.com>: > Sergey [et.al], thanks for putting this proposal together. Overall, this > looks like a pretty solid approach to providing relatively hardware > agnostic omp target functionality. I had several comments/questions
2012 Oct 12
0
Wine release 1.5.15
The Wine development release 1.5.15 is now available. What's new in this release (see below for details): - Full support for layered windows. - New version of the Gecko engine based on Firefox 16. - Support for broadcast sockets used by networked games. - Downloaded add-ons installers are now cached. - Support for persistent Internet cookies. - String optimizations in JavaScript.
2009 Jun 30
3
Matrix with random number
Hello! I have a program in Fortran and would like to build a matrix with random numbers, I have a function in C. However, I have problems with the use of function in R. Code to compile: R CMD SHLIB mat.f myrbeta.c -o func.so Code in C. #include <R.h> #include <Rmath.h> void F77_SUB(fseedi)(void){   GetRNGstate(); } void F77_SUB(fseedo)(void){   PutRNGstate(); } void
2015 Jul 28
0
Wine release 1.7.48
The Wine development release 1.7.48 is now available. What's new in this release (see below for details): - Fleshed out OpenMP implementation. - I/O stream support in the MSVCIRT C++ runtime. - Support for pixel snapping in DirectWrite. - More support for OpenGL core contexts. - Various bug fixes. The source is available from the following locations:
2009 Feb 13
2
Generate random numbers in Fortran
Hi!!! It would like to know if it exists a form to use the functions to generate variates in FORTRAN with the same easiness I use that them in C? Or not? If yes. They would have some example? I would like to use the functions rbeta, rlnorm and others! Sorry my english..rsrsrs Thanks!!!              Fábio Mathias Corrêa    University Federal of the Lavras - Brazil Veja quais são os
2009 May 04
1
how to change nlme() contrast parametrization?
How to set the nlme() function to return the answer without the intercept parametrization? #========================================================================================= library(nlme) Soybean[1:3, ] (fm1Soy.lis <- nlsList(weight ~ SSlogis(Time, Asym, xmid, scal),                        data = Soybean)) (fm1Soy.nlme <- nlme(fm1Soy.lis)) fm2Soy.nlme <- update(fm1Soy.nlme,
2014 Aug 08
4
[LLVMdev] [RFC] OpenMP offload infrastructure
Hello everybody! I would like to present a proposal for implementation of OpenMP offloading in LLVM. It was created by a list of authors and covers the runtime part at most and at a very high level. I believe it will be good to have input from community at this early stage before moving deeper in details. The driver part is intentionally not touched, since we have no clear vision on how one can
2015 Dec 02
2
clang only spawns one thread
Hi, I am using LLVM 3.6.1 to test the following code: #include <omp.h> #include <stdio.h> #include <stdlib.h> int main() { int tid, nthreads; #pragma omp parallel sections private(nthreads, tid) { #pragma omp section { tid = omp_get_thread_num(); printf("Hello, tid = %d\n ", tid); } #pragma omp section { tid = omp_get_thread_num();
2010 Jul 10
1
Set the number of threads using openmp with .C
Hi everybody! Could somebody help me with the following? I'm trying to run a simple Hello World code in openmp using .C function. The C code i have is: #include <omp.h> #include <stdio.h> #include <R.h> void hello_omp(int *n) { int th_id, nthreads; omp_set_num_threads(*n); #pragma omp parallel private(th_id) { th_id = omp_get_thread_num();
2010 Jul 05
2
Help - Google Charts on Rails Plugin
Hello, I''m starting at the RR, and I''m trying to use google charts to generate some graphs in a single plugin in rails. But I''m testing the samples that are giving errors. I think it must be configuration error. Someone who has used google charts on rails help me? Since already thank you! Juliana. =================================================================
2013 Mar 03
0
[LLVMdev] AESOP autoparallelizing compiler
----- Original Message ----- > From: "Timothy Mattausch Creech" <tcreech at umd.edu> > To: "Sebastian Dreßler" <dressler at zib.de> > Cc: "Aparna Kotha" <akotha at umd.edu>, llvmdev at cs.uiuc.edu > Sent: Sunday, March 3, 2013 11:32:49 AM > Subject: Re: [LLVMdev] AESOP autoparallelizing compiler > > Hi Sebastian, > Sure!
2013 Mar 03
3
[LLVMdev] AESOP autoparallelizing compiler
Hi Sebastian, Sure! The bulk of LMDA was written by Aparna Kotha (CCd). It computes dependences between all instructions, computes the resulting direction vectors in the function, then associates them all with loops. At a high level, the dependence analysis consults with AliasAnalysis, and ScalarEvolution before resorting to attempting to understand the effective affine expressions and
2016 Mar 25
3
Dovecot on FreeBSD 10.1
Hi Larry, I?m running dovecot2-2.2.22. ? I?ve tried to compile dovecot from the souce, and I see the same error :/ Are you using sql auth in your setup? root at beastie:/var/log # doveconf -n # 2.2.22 (fe789d2): /usr/local/etc/dovecot/dovecot.conf # Pigeonhole version 0.4.13 (7b14904) # OS: FreeBSD 10.1-RELEASE-p6 amd64 zfs auth_debug = yes auth_debug_passwords = yes auth_mechanisms = plain
2003 Sep 24
2
sshd terminates a session after a successful login
I've recently upgraded our environment to OpenSSH-3.7.1p1 on Solaris, AIX and IRIX. I have had no luck when it comes to getting the IRIX environment to work. With sshd running on an IRIX server, I connect with any other version/OS ssh, watch the connection establish, get right up to the point where the shell should spawn and sshd terminates. I have been unable to find any information online
2011 Jul 26
1
(no subject)
Hello I have been trying to figure out how to randomly select a number of records. I have a column "ID" which contains 16 individuals (numbered 1-16), each individual has a few hundred rows of GPS locations associated with it. I am trying to select a random sample of these individuals (with all their associated GPS locations) to run a kernel density analysis on, and need to repeat this
2012 Feb 23
1
using shapefiles in adehabitat/ converting shapefile to spatial pixel data frame
Hello I wonder if anybody can help, I am using the package adehabitatHR to estimate the potential distribution of a species using the command "domain" In the example given in the AdehabitatHS manual a map containing elevation information is loaded (class= spatial pixels data frame) as well as the GPS points of the animals being tracked, these are then plotted on each other and