Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]2 Replies - 27 Views - Last Post: Today, 08:50 AM
#1
Reputation: 0
- Posts: 4
- Joined: 02-October 08
Posted Today, 08:21 AM
I have been working on a project to estimate the energy consumed by an application in a cluster. I have been using a tool called "perf" in linux systems to calculate the clock cycles. I have tried using asm_volatile assembly code in aswell to calculate the cycles.But how do i manually calculate it? Let's take a simple "hello World" program for example.
#include<stdio.h>
main{
printf("\n hello world"); }
perf gave me a count close to 8lakh cycles.
Is This A Good Question/Topic? 0
Replies To: calculating clock cycles of a c program
#2
Reputation: 2933
- Posts: 8,905
- Joined: 25-December 09
Re: calculating clock cycles of a c program
Posted Today, 08:47 AM
So what is your actual question? What makes you think this is a C/C++ question?Maybe you need to investigate what perf is actually doing. Since it is on Linux you can probably find the source code on the Internet.
Jim
#3
Reputation: 0
- Posts: 4
- Joined: 02-October 08
Re: calculating clock cycles of a c program
Posted Today, 08:50 AM
jimblumberg, on 14 April 2013 - 08:47 AM, said:
So what is your actual question? What makes you think this is a C/C++ question?Maybe you need to investigate what perf is actually doing. Since it is on Linux you can probably find the source code on the Internet.
Jim
Beause I used _asm_volatile to use a TSC (time stamp counter). My question is, is there any other accurate way of measuring clock cycles in C?? Or is there a manual way of calculating it for a simple "Hello World" program??
Thank you.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/318481-calculating-clock-cycles-of-a-c-program/
lesotho a wrinkle in time benjamin netanyahu storm shelters nick lachey chevy volt christina hendricks
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.