Switching over to C++


 
Thread Tools Search this Thread
Top Forums Programming Switching over to C++
# 22  
Old 04-22-2013
Quote:
Originally Posted by alister
The point of my previous post is simply that your expectation that if the OP switches implementation language they will see a performance improvement similar to that which you described (440x) is without merit. I stand by that.

Even if that statement were to be proven correct, it would still have been meritless. There is simply insufficient information to make such a prediction.
Agreed.

We need to see their code. We cannot predict, or even fix anything without that.
# 23  
Old 05-02-2013
Its unfortunate that I cant share the code/logs here since it is against our company's policy. Thank you all, It was a good learning and I was able to convince my seniors about the redundancy of this task.


Quote:
Originally Posted by alister
Well, the username, ribosome, suggests that the data may involve bioinformatics.
Smilie I was a biotechnology student though working as a S/W engg. The client is a publishing company and so the huge data is involved.
# 24  
Old 05-02-2013
C++ is a huge and multi-paradigm language. Rewriting an interpreted language with an compiled language has the potential to be faster or more efficient in terms of the final machine code read by the CPU. However, creating efficient code in C++, similar to C, is hard. If you do not have much experience with coding and reasonable paradigms used in the language, I would strongly discourage you to use it. Think about a higher level language that would be easier to debug/code or something you're more familiar with.
In case you are a decent C++ programmer, you should only rewrite programs in a low level language like C or C++ if you really need to get all the bits of performance possible out of it (like 3d game engines, which I write in C++). Else, it isn't necessary, and will only be a pain in the neck.
When looking at your situation, I would personally first try to rewrite/fix the code in perl itself, before moving to any other language.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Case switching

Hello Folks I am writing this simple program but I am stuck at this point. Here is the snippet from my script where I have issues. 3) echo "Current Directory: $(pwd) Menu 3" echo -e "Enter a file name\n" read fname if then ... (5 Replies)
Discussion started by: Tuxidow
5 Replies

2. Solaris

The switching in the different AP's

HI, I am using the windows 2003 server R2 in there we are using the putty as to access the different AP's now from the primary AP i want to login to several different AP's using a script what the script will do is :- input a text file in which list of different ap's and the corresponding... (0 Replies)
Discussion started by: amiglani
0 Replies

3. Shell Programming and Scripting

Switching lines

Hi I'm quite new with linux. Very simple, I need to swap every 2 lines in a file. Example INPUT: a a a b b b x x x y y y s s s t t t OUTPUT: b b b a a a y y y x x x t t t (5 Replies)
Discussion started by: hernand
5 Replies

4. OS X (Apple)

vt switching

greetings, i hope this hasn't been covered previously. has anyone heard of a .kext or daemon that would allow linux or (open)solaris-like vt switching? googling didn't help much.. i know os x allows a '>console' login from loginwindow.app, but i'm mainly interested in this because there are... (0 Replies)
Discussion started by: bamdad
0 Replies

5. Shell Programming and Scripting

switching users

Hi I want to write a script which can switch between super users.But it asks for the password at the prompt.How can I manage in the script so that it didnt ask me for the password at the prompt. (1 Reply)
Discussion started by: monika
1 Replies

6. Linux

Switching from one DNS to another

Hi all, we have running some linux servers with sles9 and we have some problems with our dns servers. Sometimes they don't like to work. However, is there a parameter to enable faster switching between two ore more dns servers? Thx for your help in front Regards frank (5 Replies)
Discussion started by: ortsvorsteher
5 Replies

7. Shell Programming and Scripting

Switching between two users

Can any one tell me : How we can switch between two users without prompting for the password. (In the SHELL SCRIPT can we fetch the USERID and PASSWORD from a specified file, without using SUDO command)? (2 Replies)
Discussion started by: deepusunil
2 Replies

8. Shell Programming and Scripting

su (switching to other user)

Hi, what is the use of the double quotes and !! in the following code segment: su - user1 << ""!! > /dev/null 2>&1 echo "welcome user1" EOF !! also what is the difference between below: su - user1 << ""!! > /dev/null 2>&1 and su - $USER << ""!!!> /dev/null 2>&1. Note: $USER =... (2 Replies)
Discussion started by: bjagadeesh
2 Replies

9. Shell Programming and Scripting

su (switching to other user)

Hi, what is the use of the double quotes and !! in the following code segment: su - user1 << ""!! > /dev/null 2>&1 echo "welcome user1" EOF !! also what is the difference between below: su - user1 << ""!! > /dev/null 2>&1 and su - $USER << ""!!!> /dev/null 2>&1. Note: $USER =... (1 Reply)
Discussion started by: bjagadeesh
1 Replies

10. Solaris

Switching between users

Hi folks, could anyone please tell me how can i switch between two users without going thru the su(i.e. root)? is there any such command? thanks in advance, thell (1 Reply)
Discussion started by: thell
1 Replies
Login or Register to Ask a Question