Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
315 views

Swapping Variables (C++, processor level)

click here to access the chatroom for this question. I would like to swap two variables. and i would like to do it through the pipeline using a Read After Write hazard to my advantage. Pipeline: ...
7
votes
1answer
549 views

Node.js http request pipelining

So, I want to use node.js and http request pipelining, but I want to use HTTP only as a transport, nothing else. I am interested in exploiting the request pipelining feature. However, one problem that ...
5
votes
5answers
646 views

Why increased pipeline depth does not always mean increased throughput?

This is perhaps more of a discussion question, but I thought stackoverflow could be the right place to ask it. I am studying the concept of instruction pipelining. I have been taught that a pipeline's ...
5
votes
5answers
2k views

what is difference between Superscaling and pipelining?

Well looks too simple a question to be asked but i asked after going through few ppts on both. Both methods increase instruction throughput. And Superscaling almost always makes use of pipelining as ...
4
votes
3answers
807 views

HTTP 1.1 Pipelining

I have to implement an HTTP client in Java and for my needs it seems that the most efficient way to do it, is implement HTTP pipeline (as per RFC2616). As an aside, I want to pipeline POSTs. (Also I ...
3
votes
1answer
97 views

Proxy Server that supports smart pipelining/multiplexing

So, I want to develop a proxy server that when contacted checks the size of what it will be downloading to proxy (using head most likely) and if it's over a set size it splits the download of the ...
3
votes
2answers
521 views

Using Java NIO for pipelined Http

Researching the web, I've found that pipelined HTTP is much faster and more power efficient (specially for mobile devices) than queued or parallel connections. The support from general libraries ...
3
votes
1answer
128 views

F# compilation error: Unexpected type application

In F#, given the following class: type Foo() = member this.Bar<'t> (arg0:string) = ignore() Why does the following compile: let f = new Foo() f.Bar<Int32> "string" While the ...
2
votes
1answer
311 views

Use HttpCore + HttpNIO from Apache for HTTP Pipelining on Android?

Android uses Apache's HTTP Components library to perform HTTP requests and exposes an API that doesn't support asynchronous requests or pipelining. We're writing an app that would benefit from ...
2
votes
1answer
205 views

HTTP HEAD method and pipelining

I'm writing some code that parses HTTP requests and responses, but it may not see both sides of every conversation. The HTTP RFC states that a HEAD request should cause exactly the same response as ...
1
vote
1answer
115 views

Netty ChannelUpstreamHandler and HTTP pipelining

I was playing with the Netty example org.jboss.netty.example.http.snoop and I noticed that Firefox does 4 requests leading to the creation of 4 HttpRequestHandler instances and Internet Explorer 8/9 ...
1
vote
1answer
93 views

remote java console application control using cmd

I have Java console app, which i want to control from another computer. I use Socket class to send data through net and pipeline to connect the remote controlled program with Sender and Reader ...
1
vote
1answer
133 views

MIPS Pipelining Question

Is the forwarding (highlighted by the blue arrow) necessary? I figured the add instruction would successfully write back to register before the OR instruction reads it.
1
vote
2answers
251 views

difference between pipelining and redirection in linux

Can anyone tell me the difference? for example: if I have a file a.txt with the following content: a b c what would be the difference between cat a.txt | cat and cat < a.txt It seems to ...
1
vote
2answers
256 views

Does com.sun.net.httpserver.HttpServer support pipelining?

Does com.sun.net.httpserver.HttpServer support single-connection pipelining? It seems to handle multiple clients in parallel, but a single connection's requests are being serially executed. Is this ...
0
votes
0answers
86 views

What is the number of clock cycles required in the given sequence of Instruction using 5- stage pipelined CPU?

A 5 stage pipelined CPU has the following sequence of stages: IF – Instruction fetch from instrution memory. RD – Instruction decode and register read. EX – Execute: ALU operation for data and ...
0
votes
0answers
71 views

Can I enforce C++ WInHttp Client to pipeline its requests?

How can I enforce a winhttp client to use HTTP-1.1 pipelining. I have tried using a http client with the Windows API as follows: WinHttpSetOption(shandle, WINHTTP_OPTION_MAX_CONNS_PER_SERVER, 1, ...
0
votes
1answer
55 views

Does S3 support HTTP pipeling?

I have thousands of small files (about 1 KB) to upload to S3 every minutes. If I upload every file in the loop "send my HTTP request - wait S3's HTTP response - send next request - wait next response ...
0
votes
1answer
193 views

How to pipeline the username from Get-MoveRequest to Get-MailboxStatistics?

How do I pipeline the output of Exchange 2010's Get-MoveRequest command so that the Name variable can be used in the $Username variable below? [CmdletBinding(DefaultParameterSetName = "MoveUser")] ...
0
votes
1answer
54 views

Matching HTTP responses with their corresponding HTTP pipelined requests

I'm trying to write a program to match HTTP requests with their corresponding responses. Seems that everything is working well for most of the scenarios (when the transfer is perfectly ordered and ...
0
votes
1answer
213 views

simple pipelining and superscalar architecture

consider this instruction flow diagram.... instruction fetch->instruction decode->operands fetch->instruction execute->write back suppose a processor that supports both cisc and risc...like ...
0
votes
0answers
42 views

floating point addition using pipelining

Hey this is H/W related problem and i don't know whether this is proper place or not. I want to ask that i can't under stand this figure: Now problems in this to me are: Leading zero counter ...
0
votes
3answers
361 views

Python inheritance, class level variables, __init__ takes no arguments

Edit: This is a silly mistake, look at the answers, but my init method does not define a self variable. I have several python classes that are stages in a pipeline. They inherit from a base class. ...
0
votes
1answer
107 views

How can i use http 1.1 pipelining from a desktop Java application (J2SE)?

I'm making a simple Java app that makes 40 requests (each request has a unique URL) to a define server ... there is a simple way to make that 40 request with HTTP 1.1? I need to use only 1 tcp ...