Displaying 20 results from an estimated 800 matches similar to: "[LLVMdev] Fwd: unsupported gc: vmkit"
2013 Jan 09
2
[LLVMdev] linking llvm libraries with bitcode files
I'm developing an llvm-based compiler and when I try to generate
executable file the following error occurs:
./bin/llvmcode.s:35: undefined reference to `operator new[](unsigned
long)'
Note that in the generated IR, the function '@_Znam' is called which is
located in one of llvm libraries. So, I should have linked the generated
assembly file with that library. Here is the code I
2012 Jun 21
1
[LLVMdev] Error: unsupported GC: vmkit
Hi,I have recently installed llvm-3.1 , gnu classpath-0.97.2 and vmkit I compiled a simple java file "hello.java" to hello.class Then converted hello.class to llvm bytecode(hello.bc) using vmjc from vmkitwhen i tried to run "hello.bc" using lli
I am getting the following error
shyam at shyam:~$ cat hello.javaimport java.io.*;
class hello {
public static void main(String[]
2013 Jan 09
0
[LLVMdev] linking llvm libraries with bitcode files
On Wed, Jan 9, 2013 at 5:32 AM, Ali Sedaghat <ali.sedaghatbaf at gmail.com> wrote:
> I'm developing an llvm-based compiler and when I try to generate
> executable file the following error occurs:
>
> ./bin/llvmcode.s:35: undefined reference to `operator new[](unsigned
> long)'
>
> Note that in the generated IR, the function '@_Znam' is called which is
2013 Oct 10
1
[LLVMdev] compile error
when I compile llvm-3.3 according to the instructions in vmkit's homepage
the following error occurs:
llvm-3.3.src/Release+Asserts/lib/libclangAST.a(VTableBuilder.o): In
function `(anonymous
namespace)::VCallAndVBaseOffsetBuilder::AddVCallOffsets(clang::BaseSubobject,
clang::CharUnits)':
VTableBuilder.cpp:(.text+0xc6c3): undefined reference to
2010 Jan 08
1
java.lang.OutOfMemoryError: PermGen space issue with Windows 2003 xVM domu with Tomcat
Hello All,
One of our user is facing java.lang.OutOfMemoryError: PermGen space
issue on a Windows 2003 32 bit xVM domU with 4GB RAM. He is able to
successfully do these tests on equivalent physical system with Windows
2003 OS and 4GB RAM. Another user is facing issues with Tomcat running
out of heap space on a Win2008 64bit xvM domU
Our xVM hypervisor server is X4150 server with 64GB RAM
2013 Mar 19
0
Eror : OutOfMemoryError (Java): Java heap space
Hi,
i want to create xlsx sheet, all things seems to be perfect until this erro
message
Erreur : OutOfMemoryError (Java): Java heap space
i have xp system, (32bit)
I tried the following syntax
> options(java.parameters = "-Xmx1000m")
> options(java.parameters = "-Xms=3670K")
> writeWorksheet(wb, SP, sheet = "SP")
alos this one
options(java.parameters =
2013 Jun 19
0
Running RSpec tests, how can I resolve a “Curl::Err::OutOfMemoryError”?
Running an rspec test with ruby bindings for libcurl (with curb<https://github.com/taf2/curb>)
like so:
it "Should return a certain user in a JSON array" do
$var = Curl::Easy.new("some-url.com")
$var.perform
response = JSON.parse($var.body_str)
response[''user''].should eq(''some user name'')
end
and sometimes I get this error:
2006 Nov 06
0
rJava: java.lang.OutOfMemoryError
Hy,
In my case I just invoked as root (on a linux box) the command R CMD
javareconf and checked if my system and root vm did match the version of
the user vm. After this the
command .jinit(parameters=c("-Xmx512m","-Xmx128m")) could be executed
without errors. I got this information from
http://www.rosuda.org/JGR/down.shtml
--
Hi,
Has anybody encountered the following
2017 Nov 30
4
xlsx Fuera de memoria
Hola, estoy trabajando con el paquete xlsx y el xlConnect y ambos presentan
este mismo error.
Error in .jcall(cell, "V", "setCellValue", value) :
java.lang.OutOfMemoryError: Java heap space
Alguien conoce una solución.
Alguien conoce otro paquete para guardar documento de excel y que no
involucre el uso de Java.
--
*Wilmer Contreras Sepulveda*
*Grupo de Investigación
2013 Oct 23
0
[LLVMdev] GC StackMaps (was Stackmap and Patchpoint Intrinsic Proposal)
I'm moving this to a different thread. I think the newly proposed
intrinsic definitions and their current implementation are valuable
regardless of how it gets tied into GC...
On Oct 22, 2013, at 6:24 PM, Philip R <listmail at philipreames.com> wrote:
> Adding Gael as someone who has previously discussed vmkit topics on the list. Since I'm assuming this is where the GC support
2016 Apr 23
1
Java memory error when reading a small xlsx file
Hi,
I tried to read a (small) xlsx file by "readWorksheetFromFile" function
of "XLConnect" package and "read.xlsx" function in "xlsx" package, but I
got this error message:
Error: OutOfMemoryError (Java): Java heap space
I tried to follow the solution on the web
2013 Feb 16
2
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
On 02/15/2013 07:13 PM, Pedro Artigas wrote:
> I am not an expert on metadata or the CG information but one of the two has to happen:
I'm not an expert either but I'll give it a try! :-)
> - Simply moving the deleter pass to a different spot
> - Changing the doFinalization of another pass (Printer?) to do the deleter pass job (this should work now because the doFinalization order
2016 Jun 27
2
fts_solr crashs
Hi,
I?ve set up in dovecot 2.2.24-1~auto+49 (from dovecot repo) fts_solr and
fts_tika - jetti8 (from Debian Jessie) and latest tika-server running on
a seperate machine. But if I want to rescan all messages for reindexing
for instance all attachments with "doveadm -v index -u user at domain.tld
INBOX" with 3137 mail in the INBOX it counts and then by 2900 mails the
doveadm crashes
2013 Oct 23
2
[LLVMdev] GC StackMaps (was Stackmap and Patchpoint Intrinsic Proposal)
Hi all,
I don't know if I understand everything, but it seems really
interesting for a runtime developer, stackmap and patchpoint looks
perfect for a lot of optimizations :) I just have few question to
verify if I understand what are these stackmaps and patchpoints, and I
discuss the GC after.
* I have a first very simple scenario (useful in vmkit). Let's imagine
that we want to lazily
2013 Oct 23
5
[LLVMdev] [RFC] Stackmap and Patchpoint Intrinsic Proposal
Adding Gael as someone who has previously discussed vmkit topics on the
list. Since I'm assuming this is where the GC support came from, I
wanted to draw this conversation to the attention of someone more
familiar with the LLVM implementation than myself.
On 10/22/13 4:18 PM, Andrew Trick wrote:
> On Oct 22, 2013, at 3:08 PM, Filip Pizlo <fpizlo at apple.com
> <mailto:fpizlo
2018 Oct 16
4
Problema de memoria de R
Buenas tardes,
Solicito por favor ayuda con este error:
Error: OutOfMemoryError (Java): Java heap space
Estoy trabajando con matrices de grandes dimensiones y el programa no logra completarse porque dice le falta memoria.
Gracias
[unnamed]
Sara Suarez Zapata
Estudiante en práctica - Unidad Gestion Bolsa de Energia.
Tel: (574) 380 61 18
Correo: sara.suarez en
2013 Jul 22
1
problem loading large xlsx file into r
Hi,
I am facing trouble when trying to read large xlsx file into R. please find the code and error below. The file I was trying to read has 36,500 rows X 188 col, ~ 37 MB size.
> options( java.parameters = "-Xmx4g" )
> library(xlsx)
Loading required package: xlsxjars
Loading required package: rJava
> cftc =
2013 Feb 18
0
[LLVMdev] GCMetadataPrinter::finishAssembly not executed?
Hello Yiannis,
Your patch seems fine. It is option #2 which I am glad to hear solves the issue. It also removes more lines than it adds, I like patches that fix issues and have that property!
Anyhow if you add some testing, as you suggest, you should be good to go.
Thanks
Pedro
On Feb 16, 2013, at 6:13 AM, Yiannis Tsiouris <gtsiour at softlab.ntua.gr> wrote:
>
2011 Feb 09
3
Problem with xlsx package
I am trying to read an xlsx spreadsheet (1506 rows, 501columns) all
populated but getting the following error:
Please advise as to how to get around this issue.
> res <- read.xlsx("c:\\BSE_v2.xlsx",1)
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, :
java.lang.OutOfMemoryError: Java heap space
Here is the session info:
2013 Nov 04
3
Reading data from Excel file in r
Hi experts,
I want to read data from an excel data like this:
for the fifth column, from first row until 140 but only 1,3,5,7,.....139
(only 70 values),
How can I do it in R?
thanks
[[alternative HTML version deleted]]