Tagged Questions
The torque tag has no wiki summary.
8
votes
4answers
3k views
Unity vs Torque game engines and IDE environment
I want to get people's opinion of Torque and Unity and their IDE tools.
You build Torque games using one of their engines (I'm currently interested in the iPhone engine), and Torque Game Builder ...
4
votes
2answers
297 views
Connecting laptop(s)/desktop(s) to form a MATLAB computing cluster?
I have experience running parallel jobs on a remote cluster, and parallel (parfor) jobs on a single local machine, but never tried making a cluster of my own. I have access couple of ...
2
votes
1answer
82 views
running programs with torque
I have a code in fortran which I compiled and then sent to run as a pbs job in a
supercomputer. I want to modify the source code and compile it again while keeping
the already running program. My ...
2
votes
2answers
163 views
Game Engine usage for Normal iPhone apps
When the standard iPhone UI controls become too bland, and you want your simple score keeping app to pop a little more with colour, animation, non-standard GUI fonts, and background wallpaper, etc., ...
2
votes
1answer
386 views
J2EE Template Engine Recommendations?
Looking to expand a current J2EE project using JSTL and Apache Torque with some sort of template engine so we can easily modify the views.
Any suggestions?
2
votes
4answers
960 views
Test MPI on a cluster
I am learning OpenMPI on a cluster. Here is my first example. I expect the output would show response from different nodes, but they all respond from the same node node062. I just wonder why and how I ...
1
vote
1answer
15 views
setting two queues in torque?
I have one queue called "batch" in a torque setup. I want to create a new queue
called "db" for debugging jobs. "db" queue will have several restrictions such as
maximum CPU time of 10 min, etc. Both ...
1
vote
1answer
21 views
List of job_state values for torque
What are the possible values for job_state in Torque?
I looked in the related man pages have yet to find a complete list.
1
vote
3answers
103 views
how do i find a complete list of available torque pbs queues?
Q: How do I find the available PBS queues on the "typical" Torque MPI system?
(asking our admin takes 24+ hours, and the system changes with constant migration)
(for example, "Std8" is one possible ...
1
vote
1answer
210 views
jRuby error - can't modify frozen array
I keep getting this error in my App, no matter what I try to fix.
"can't modify frozen array"
Any idea what could be possibly wrong here? I am running a jRuby (1.6.2) app on Torquebox (1.0.1) on my ...
1
vote
1answer
409 views
Does a PBS batch system move multiple serial jobs across nodes?
If I need to run many serial programs "in parallel" (because the problem is simple but time consuming - I need to read in many different data sets for the same program), the solution is simple if I ...
1
vote
1answer
549 views
Hibernate vs. Apache Torque
Can anybody provide detailed advantages and disadvantages of each ORM?
First of all I'm interested in things that Hibernate provides, and Torquay not.
1
vote
6answers
871 views
What's the easiest way to persist java objects?
Right now I have java program whose classes are currently POJOs and stored in volatile memory. These need to be persisted. As I understand it two popular choices are JDO and the Java Persistence API. ...
0
votes
0answers
12 views
How can I combine torque and html, like ncbi blast service?
I use php to submitted a job to torque (pbs), and it(torque) generate output as:
"This account is currently not available."
I think it reference to account which runs httpd(apache)
apache is a ...
0
votes
0answers
28 views
How to compile Torque 2D with TGB Platformer Kit on Mac OS X 10.7?
I'm trying to recompile Torque-2d (or even Torque) with the TGB Platformer kit on Mac OS X 10.7 (Lion) using Xcode and it just doesn't compile. I tried following the instructions from the developer ...
0
votes
1answer
42 views
Select a group of records at a time based on them having same value in a particular column
I want to be able to use a single query to select all records out of a table having the same value in a particular column.
Clarification
Conditions:
- document_id is not a primary key.
List ids ...
0
votes
1answer
53 views
Force exerted by a magnet A on the other magnet B at a randam position and at random angles [closed]
Pls help me with this physics Problem in Magnetism.
I have modeled a pseudo magnetic field in OpenGL, which looks similar to this
The vectors are discretely calculated by retrieving appropriate ...
0
votes
1answer
105 views
How do I make a b2body polygon rotate around it's mass center?
This shouldn't be hard but I can't get it to work.
Basically, the user creates a b2body polygon by making lines on the screen. I want that b2body to spin (or rotate around it's mass center). I can ...
0
votes
0answers
105 views
Jetty sealed javax.naming
I have a legacy application using struts 1 and torque. I have made an effort last week to refactor it a bit and tried to decouple some groups of classes and introduced unit tests. As I can not test ...
0
votes
0answers
18 views
real time monitoring of a torque console
Far out question here. I'm working on a system for monitoring Torque3d's console. Unfortunately, it creates it's own custom console - so I can't just redirect stdio. It does write to console.log, but ...
0
votes
1answer
169 views
Trying to deploy a test rails app to Torquebox, keep getting rack errors
So, I've been following the documentation for Torquebox found here:
http://torquebox.org/documentation/1.0.0/
I have the JBOSS stuff working, and deployed a test rails app (empty) to it. I ...
0
votes
0answers
130 views
Error using sferic/rails_admin gem on TorqueBox JBoss plateform
I get the following error using sferic/rails_admin gem on TorqueBox JBoss plateform.
Is this a rails_admin or TorqueBox issue? Any help is welcome.
14:13:53,006 INFO ...
0
votes
1answer
233 views
Help with “hello world” pbsdsh
I want to test whether pbsdsh works or not in my system. I use the following programme
I am using a linux server with two 64-bit quad-core Intel Xeon (24 compute nodes
try.sh
#!/bin/bash
# Set up ...
0
votes
3answers
476 views
Apache Torque Criteria: how to join a subquery
Let's say I have the follow SQL statement. I would like to convert this to Torque Criteria:
SELECT table.name, subq1.total AS 'TOTAL', subq2.total2 AS 'SECOND TOTAL'
FROM table
LEFT JOIN (
SELECT ...
0
votes
1answer
170 views
Where to ask PBS/Torque Configuration question?
I've noticed that several questions on SO about PBS have gone unanswered. Is there a more appropriate forum to ask these questions? For example:
PBS programming?
How to limit number of concurrently ...
0
votes
1answer
65 views
one schema for propel and torque project
I have a project consists of a java and a php application.
The java application uses the torque-ORM and the PHP application uses the propel ORM.
I have two schema.xml files for the same database. As ...
0
votes
1answer
617 views
How to write subquery in Criteria
I have a SQL like this:
Select tbl.id, tbl.name
From
(select table1.id, table1.name
from table1
inner join table2 on table1.id = table2.id
order by table2.priority
) tbl
group by table1.id
...