Sponsored Content
Full Discussion: Event Prediction - Euro 2012
Contact Us Post Here to Contact Site Administrators and Moderators Event Prediction - Euro 2012 Post 302662395 by Scott on Tuesday 26th of June 2012 01:04:45 PM
Old 06-26-2012
We have a new "Event Predictions Manager"!

Hello ni2.

You are now able to create and manage events in the Events Predictor.

Thank you for contributing to this interesting, if under-utilised, feature.

Good luck!
 

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

Predict Future Outcomes in Our Event Prediction Market

Folks love to predict the future, so we have enabled predicting the future for members. So, please enjoy placing your Forum Bits predicting future outcomes in our new Event Prediction Market. Current events you can predict include science, technology, M&A and other global events: Oracle... (0 Replies)
Discussion started by: Neo
0 Replies

2. Post Here to Contact Site Administrators and Moderators

Event Prediction - New Sports Events

Hi, Some sports predictions suggestions. Although the Celtics are still playing the Heat. Just being optimistic that they will win. Otherwise, please change to Heat. (9 Replies)
Discussion started by: ni2
9 Replies

3. What is on Your Mind?

Euro 2012 Final - Italy vs Spain

Its Italy vs Spain in the final on Sunday! I hope this is going to be a "good" match that ends in 90 mins or extra time. No penalties. I wasn't expecting Italy in the final, I think the Germans just went to sleep. But that said Italy worked hard and they deserve to be in the final. There... (0 Replies)
Discussion started by: ni2
0 Replies

4. Post Here to Contact Site Administrators and Moderators

change the year in the event prediction market

Can you change the year in the event prediction market Facebook Stock Will Be Over $70 a Share By the End of 2102? (Closes for placing Bits on 09-30-12 - 10:30 PM) (8 Replies)
Discussion started by: itkamaraj
8 Replies
PAPI_list_events(3)						       PAPI						       PAPI_list_events(3)

NAME
PAPI_list_events - list the events in an event set SYNOPSIS
Detailed Description List the events in an event set. PAPI_list_events() returns an array of events and a count of the total number of events in an event set. This call assumes an initialized PAPI library and a successfully created event set. C Interface #include <papi.h> int PAPI_list_events(int *EventSet, int *Events, int *number ); Parameters: EventSet An integer handle for a PAPI event set as created by PAPI_create_eventset *Events A pointer to a preallocated array of codes for events, such as PAPI_INT_INS. No more than *number codes will be stored into the array. *number On input, the size of the Events array, or maximum number of event codes to be returned. A value of 0 can be used to probe an event set. On output, the number of events actually in the event set. This value may be greater than the actually stored number of event codes. Return values: PAPI_EINVAL PAPI_ENOEVST Examples: if (PAPI_event_name_to_code("PAPI_TOT_INS",&EventCode) != PAPI_OK) exit(1); if (PAPI_add_event(EventSet, EventCode) != PAPI_OK) exit(1); Convert a second event name to an event code if (PAPI_event_name_to_code("PAPI_L1_LDM",&EventCode) != PAPI_OK) exit(1); if (PAPI_add_event(EventSet, EventCode) != PAPI_OK) exit(1); number = 0; if(PAPI_list_events(EventSet, NULL, &number)) exit(1); if(number != 2) exit(1); if(PAPI_list_events(EventSet, Events, &number)) exit(1); * See Also: PAPI_event_code_to_name PAPI_event_name_to_code PAPI_add_event PAPI_create_eventset Fortran Interface: #include 'fpapi.h' PAPI_list_events( C_INT EventSet, C_INT(*) Events, C_INT number, C_INT check ) See Also: PAPI_list_events Author Generated automatically by Doxygen for PAPI from the source code. Version 5.2.0.0 Tue Jun 17 2014 PAPI_list_events(3)
All times are GMT -4. The time now is 03:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy