bandwidth 0.16 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News bandwidth 0.16 (Default branch)
# 1  
Old 01-28-2009
bandwidth 0.16 (Default branch)

bandwidth is a benchmark to estimate the memory bandwidth of a system, including main memory, L2 cache, framebuffer memory, and string library performance. License: GNU General Public License (GPL) Changes:
x86_64 assembly code was added for 64-bit Linux. Both 64-bit transfers and 128-bit SSE2 transfers were implemented. Version 0.16 is really a 64-bit only release. Use version 0.15 for 32-bit. You will need Nasm 2 to assemble x86_64 code. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. IP Networking

bandwidth

Hi, 1-What is bandewidth ? 2-How to calculate ? 3-How to measure ? Any free software to measure it ? Many thanks. (4 Replies)
Discussion started by: big123456
4 Replies

2. UNIX for Dummies Questions & Answers

Bandwidth Monitoring.

Hi, I'm looking for some way to bring up in a shell window a realtime (or something that updates at 10 second intervals or whatever) bandwidth monitor. I just want something that shows me how much kbps is going in and how much is going out of each interface. Is there something that might... (2 Replies)
Discussion started by: d11wtq
2 Replies

3. IP Networking

Bandwidth Caping With PF

i have two questions actually... i need to block certain ports with openbsd and PF in a large lan, the firewall is supposed to be a router between the internet and the first lan switch. first of all, would this work at all in theory? second, i tried doing this a few days ago at a huge lan but i... (2 Replies)
Discussion started by: nocturnal
2 Replies

4. UNIX for Dummies Questions & Answers

bandwidth check?

I'm on T1, is there any way i can check my acctual bandwidth? Thank you all (3 Replies)
Discussion started by: solvman
3 Replies
Login or Register to Ask a Question
USB_SET_INTERFACE(9)						   USB Core APIs					      USB_SET_INTERFACE(9)

NAME
usb_set_interface - Makes a particular alternate setting be current SYNOPSIS
int usb_set_interface(struct usb_device * dev, int interface, int alternate); ARGUMENTS
dev the device whose interface is being updated interface the interface being updated alternate the setting being chosen. CONTEXT
!in_interrupt () DESCRIPTION
This is used to enable data transfers on interfaces that may not be enabled by default. Not all devices support such configurability. Only the driver bound to an interface may change its setting. Within any given configuration, each interface may have several alternative settings. These are often used to control levels of bandwidth consumption. For example, the default setting for a high speed interrupt endpoint may not send more than 64 bytes per microframe, while interrupt transfers of up to 3KBytes per microframe are legal. Also, isochronous endpoints may never be part of an interface's default setting. To access such bandwidth, alternate interface settings must be made current. Note that in the Linux USB subsystem, bandwidth associated with an endpoint in a given alternate setting is not reserved until an URB is submitted that needs that bandwidth. Some other operating systems allocate bandwidth early, when a configuration is chosen. This call is synchronous, and may not be used in an interrupt context. Also, drivers must not change altsettings while urbs are scheduled for endpoints in that interface; all such urbs must first be completed (perhaps forced by unlinking). Returns zero on success, or else the status code returned by the underlying usb_control_msg call. COPYRIGHT
Kernel Hackers Manual 2.6. July 2010 USB_SET_INTERFACE(9)