Tagged Questions
The prefetch tag has no wiki summary.
12
votes
2answers
3k views
How do I programatically disable hardware prefetching?
I would like to programatically disable hardware prefetching.
From Optimizing Application Performance on Intel® Core™ Microarchitecture Using Hardware-Implemented Prefetchers and
How to Choose ...
7
votes
2answers
1k views
Best resource for learning about prefetching a buffer in C on Intel/AMD 64 bit
I am interested in mastering prefetch-related functions such as
_mm_prefetch(...)
so when I perform operations that loop over arrays, the memory bandwidth is fully utilized. What are the best ...
6
votes
1answer
124 views
How to use intel prefetch pragma when data hidden inside an object?
Intel helpfully provides a prefetch pragma; for example
#pragma prefetch a
for(i=0; i<m; i++)
a[i]=b[i]+1;
will prefetch a a certain number of loop cycles ahead, as determined by the compiler.
...
5
votes
4answers
299 views
Are there any downsides to prefetching webpages using javascript?
I'm currently experimenting with prefetching pages to increase perceived performance of our website, using the code below (req. jQuery).
Only 0.5% of our visitors use dial-up, I'm excluding ...
4
votes
2answers
41 views
Alternative for Downloading Several Images to a Web Page
We all know that pre-fetching images can run slow because of browser limits in the HTTP protocol, right? So, I have XHTML, jQuery, Apache httpd, and PHP at my disposal. What's an easy solution to ...
4
votes
2answers
726 views
How to prefetch image in GWT?
I tried the following code:
RootPanel root = RootPanel.get("root");
root.clear();
final FlowPanel p = new FlowPanel();
root.add(p);
for (int i=0; i<20; ++i) {
String url = "/thumb/"+i;
...
4
votes
2answers
217 views
Chrome pre-fetching of pages in a domain
I read in a source that chrome, when it goes to a domain, it prefetches most of the pages that might be used for that domain. As a result of this, I'm facing a problem. I have a greasemonkey script ...
4
votes
2answers
217 views
How to close the prefetch of cache in windows?
In a C/C++ program, how to close the prefetch of each core in the Windows system?
3
votes
0answers
254 views
link element prefetching not working in Firefox 3.6
I am trying to test prefetching on Firefox 3.6. I'm using:
<link rel="prefetch" href="hst_galaxy.jpg"/>
I don't see any requests in Firebug's Net panel. When I look at the Apache2 logs, I see ...
3
votes
2answers
2k views
Prefetch for Intel Core 2 Duo
Has anyone had experience using prefetch instructions for the Core 2 Duo processor?
I've been using the (standard?) prefetch set (prefetchnta, prefetcht1, etc) with success for a series of P4 ...
3
votes
1answer
1k views
How to determine SSE prefetch instruction size?
I am working with code which contains inline assembly for SSE prefetch instructions. A preprocessor constant determines whether the instructions for 32-, 64- or 128-bye prefetches are used. The ...
2
votes
2answers
190 views
HTML5 cache manifest and prefetching
One thing I'm not fully grasping is if the cache manifest is also acting as a prefetch when it is online for all the files listed.
For example, lets say I'm visiting:
/page1.html
Each of the ...
2
votes
0answers
52 views
prefetch distance and degre of prefetch
what is the difference between prefetch distance and degree of prefetching?
2
votes
1answer
253 views
programatically disable hardware prefetching on AMD systems
is there a way to programatically disable the hardware prefetcher on an AMD system like you can in an Intel system as discussed in this topic
Specifically for the AMD Opteron Barcelona or Istanbul ...
2
votes
1answer
441 views
assembler usage of prefetch commands
I'm writing some (arm) inline assembly code that works on a huge array of C structs in a loop and stores some data into another array.
the processor supports the PLD prefetching command.
if i'm ...
2
votes
3answers
520 views
Prefetching data in with Linq-to-SQL, IOC and Repository pattern
using Linq-to-SQL I'd like to prefetch some data.
1) the common solution is to deal with DataLoadOptions, but in my architecture it won't work because :
the options have to be set before the first ...
1
vote
1answer
65 views
Dangers of using HTML5 prefetch?
Ok, so it isn't a huge worry yet as it is only supported by a few browsers:
• Mozilla Firefox: Supported
• Google Chrome: Supported since version 13 (Use an alternate syntax)
• Safari: ...
1
vote
1answer
91 views
Optimize NHibernate: Load all data from specified tables
Scenario: I have built an ASP.NET MVC application that manages my cooking recipes. I am using FluentNHibernate to access data from the following tables:
Users
Categories
Recipes
RecipeCategories ...
1
vote
3answers
52 views
Is excessive use of prefetch bad?
Just read this article on prefetching, and it states:
Of course, you have to be careful (Don’t prefetch your entire
website!)
I just wondered, why? If the work is going on behind the scenes, ...
1
vote
1answer
127 views
Prefetching aligned memory
I have some threaded C code that requires 64 byte alignment of the processed data structure. How will this alignment interact with prefetch instructions like the gcc __builtin_prefetch? Will the ...
1
vote
1answer
252 views
Smooth div “gallery” with jQuery tabs
I'm looking for an elegant and efficient solution for something that can be described as a div “gallery”.
Currently we're using jQuery UI tabs and prepopulate divs on server. The user only sees the ...
1
vote
2answers
51 views
Determining if pre-fetching is enabled on the client side
I recently received a request to determine if a user's browser has pre-fetching enabled. I've searched around, but I've come up empty. Any thoughts on how to accomplish this task? I've watched ...
1
vote
1answer
190 views
Can C compiler prefetch data around the call?
Is it possible to good C compiler with high optimization enabled to optimize code with prefetches and to place prefetches before some function call:
struct *abc;
//...
...
1
vote
1answer
223 views
Windows XP prefetcher registry values
I have been investigating the windows Prefetching system hoping to find a way to speed up the load time of an application I am working on. I found the following link where a developer describes ...
1
vote
1answer
319 views
Eager loading / prefetching many-to-many without LoadOptions - Linq to Sql
I've got a situation where I need to prefetch some entities through a many-to-many relationship. So it's like the classic BlogPost <- BlogPostTag -> Tag situation.
Yes, I'm aware of LoadOptions ...
1
vote
1answer
417 views
Are modern CPU caches optimized to deal with constant strides? Across threads?
Say I have a big array, and multiple threads reading from the array. Each thread iterates through the array by jumping a constant amount, but starts at a different offset. So thread 1 may start at ...
1
vote
3answers
614 views
Using JavaScript, how can I prefetch another web page on my site?
I have Large.html, which is a web page that has a lot of images and javascript on it which takes a long time to load.
From other pages (a.html, b.html) how can I use JavaScript to prefetch Large.html ...
1
vote
1answer
610 views
Hibernate: How to eagerly fetch un-associated entities?
Java Persistence with Hibernate shows lots of examples of how to eagerly fetch associated entities, such as:
Adding @org.hibernate.annotations.BatchSize to the associated class
Adding ...
0
votes
0answers
24 views
0
votes
0answers
17 views
In a web app, how do I preload a set of arbitrary files to view them more quickly as I go through them?
Suppose I have a .NET web application that contains two panes. One pane is a viewer capable of displaying a variety of large file types. The other pane contains an arbitrary list of files, e.g. ...
0
votes
0answers
121 views
Crm 2011 SSRS Report With FetchXml And Advanced Find
Im trying to make ssrs that firstly show advanced find,user select attribute from advanced find,and pre-filtering cames second native ssrs from with my parameters.How i show advanced find and make ...
0
votes
2answers
146 views
Prefetching in Nvidia CUDA
I'm working on data prefetching in nVidia CUDA. I read some documents on prefetching on device itself i.e. Prefetching from shared memory to cache.
But I'm interested in data prefetching between CPU ...
0
votes
1answer
25 views
How to open and read 1000s of files very quickly
My problem is that application takes too long to load thousands of files. Yes, I know it's going to take a long time, but I would like to make it faster by any amount of time. What I mean by "load" ...
0
votes
1answer
111 views
how to test prefetch/prerender
I have started to load a few key resources and pages using the prefetch/prerender system.
Is there a way to ensure that the resources in question are actually being preloaded?
0
votes
1answer
36 views
Reading discrete set of pages from a disk at one go
The problem is as follows:-
I have a certain file on disk which has a huge size (say a terabyte), now I want to read say N pages (discrete and not contiguous with a huge spread) from this file on ...
0
votes
0answers
110 views
Problem setting “Hardware Prefetch Disable” bit
I am trying to deactivate the hardware prefetching as suggested here: How do I programatically disable hardware prefetching?
I am using a Xeon X7560 system. The current value in MSR #416 (0x1A0) is ...
0
votes
0answers
55 views
How can I disable hardware prefetching on a AMD Opteron
After reading two threads it this forum, I can't solve this problem.
Well, all the specifications are in (page 434):
http://support.amd.com/us/Processor_TechDocs/31116.pdf
It says that in register ...
0
votes
0answers
21 views
Hardware prefetching in corei3
Does corei3 support hardware prefetching through hardware prefetcher??, If yes, how do I enable/disable it??. Thanks in advance
0
votes
1answer
56 views
Linux: need to design pre-fetcher to cache files from NAS into system memory
I am designing a server for the following scenario:
a series of single images are stored on a NAS, lets say 100 of them
a client connects to the server over TCP socket and requests image39
server ...
0
votes
2answers
130 views
Container_of() not compiling
List.h defines a macro called list_entry which is a wrapper for container_of() function.
An elegant function, which seems very delicate:
Consider this piece of code:
tmp = list_entry(pos,(struct ...
0
votes
1answer
212 views
J2ME player object hangs before pre-fetch
I am trying to write code in J2ME for the Nokia SDK (S60 device) and am using Eclipse.
The code tries to play some wav files placed within the "res" directory of the project. The code is as ...
0
votes
2answers
358 views
How do I prefetch a pointer in C, targeting AMD Opteron 6168?
I am writing a multi-threaded program in C where one core periodically grabs an item from the head of a linked list while other cores append items to the back of the list (using CAS magic for thread ...
0
votes
1answer
249 views
CakePHP + HTML5 Prefething = Logging Out
After adding HTML5 Prefetch links to head section of default.ctp, all firefox users (in CakePHP application im working on) are keep getting logged out after next page refresh.
Any ideas how to make ...
0
votes
1answer
359 views
GWT code splitting strange behaviour in IE8
I have a widget (Main.java) which encapsulates funcionality and implements the Async Provider pattern for code splitting. In addition, I use the Prefetching pattern so that the browser downloads the ...
0
votes
2answers
801 views
Javascript problem when setting src for img element in FireFox - string parsing error?
I'm having problems with image's on the page. I'm using Javascript to create the elements, and in FireFox it seems the string that I'm using to set the innerHTML is not being parsed correctly. I'll ...
0
votes
2answers
92 views
Is it possible in Oracle SQLDeveloper to prefetch certain tables’ metadata and keep it cached locally?
I am working on a remote database which has several master tables. the meta-data & the actual data in these tables changes rarely.
When querying DB involving these tables and using certain ...
0
votes
2answers
3k views
Android: Loading data and then notifying an Activity? Also documented a failed approach!
I just tried a stupid approach and it crashed my app... Basically I have an activity that has three tabs (containing three activities). Each of the tabs gets its input from an xml file downloaded off ...
0
votes
1answer
539 views
Prefetching information in windows XP fails and abort the launching of my application
I compile my application on a windows XP SP3 machine. When it compiles, I try to lauch it, and windows replies me back with :
Unable to start program 'xx'. This
application has failed to start
...
0
votes
1answer
158 views
subsonic preload object and child
i'm looking to load a list of object with their child graph in subsonic. I know how to do it using linq to sql with dataloadoptions
i have this graph
product
- location
- prices
new ...
-1
votes
1answer
150 views
How do i programmatically disable hardware prefetching?
I am using msr-tools-1.2 for changing the hardware prefetcher.I am using intel core 2 duo processor.
I used this command for enabling the DPL (Hardware Prefetch) Bit 9.
root@... msr-tools-1.2]# ...