tivadj
http://tivadj-tech.blogspot.com
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Tech Off | Accelerator vs Concurrency & Coordination Runtime and Decentralized Software Services Toolkit | 4 | Aug 29, 2009 at 10:54 AM |
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Tech Off | Accelerator vs Concurrency & Coordination Runtime and Decentralized Software Services Toolkit | 4 | Aug 29, 2009 at 10:54 AM |
Day 1 Keynote - Bjarne Stroustrup: C++11 Style
Feb 11, 2012 at 6:52 AMFrom C++ application development point of view, is there any place for compiler generated iterators in C++ (c# IEnumerable)? Seems like they may be implemented with zero overhead, like lambdas do.
C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 5 of n
Sep 20, 2010 at 11:26 PMThanks Stephan.
Also I would like to hear about test driven development (TDD) for C++. I used C++/C++CLI/NUnit to leverage all testing goodies at managed side. But it is not a portable solution.
BTC: David Heckerman - Biology, Machines, Medicine and Physics
Jul 22, 2010 at 7:55 AMThanks Lieb.
BTC: David Heckerman - Biology, Machines, Medicine and Physics
Jul 15, 2010 at 3:26 PMWhat book did David recommend answering first mantra question?
Stephan T. Lavavej: Everything you ever wanted to know about nullptr
Oct 21, 2009 at 2:58 AMRegarding conflicting types nullptr_t in native and unmanaged sides.
In .NET you can't write typeof(null) because null has no type. How it is turned out for nullptr in C++/CLI to have a type?
Could you elaborate?
Programming in the Age of Concurrency: The Accelerator Project
Aug 29, 2009 at 10:52 AM@aL_
+1
With LINQ one can write
var grayImage = GPU.Compute(image,(Float4 color)=> {
return color.R * 0.4 + color.G*0.3 + color.B*0.3);
});
without Accelerator's array proxies.
With improved Expressions in v4.0 link one can expect very convenient api...
Any news?
Expert to Expert: Erik Meijer and Anders Hejlsberg - The Future of C#
Mar 04, 2009 at 6:51 AMinterface ISet<T> : IEnumerable<T>
{
bool Contains(T item);
}
then it can't be covariant (because Contains takes T as an argument) according to Anders explanation...
Guys who have touched 4.0, is it true?
Scott Guthrie On Silverlight, MIX09, Keynotes, Developers and Designers
Jan 31, 2009 at 3:42 AMWill Task Parallel Library be available as part of SilverLight #? base library?