User Morten Christiansen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:43:02Z http://stackoverflow.com/feeds/user/4055 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140061/when-to-use-dynamic-vs-static-libraries 15 When to use dynamic vs. static libraries Morten Christiansen 2008-09-26T15:02:01Z 2009-10-16T19:19:25Z <p>When creating a class library in C++, you can choose between dynamic (.dll) and static (.lib) libraries. What is the difference between them and when is it appropriate to use which?</p> http://stackoverflow.com/questions/253211/how-to-block-until-an-asynchronous-job-finishes 2 How to block until an asynchronous job finishes Morten Christiansen 2008-10-31T11:28:25Z 2009-09-19T23:44:44Z <p>I'm working on a C# library which offloads certain work tasks to the GPU using NVIDIA's CUDA. An example of this is adding two arrays together using extension methods:</p> <pre><code>float[] a = new float[]{ ... } float[] b = new float[]{ ... } float[] c = a.Add(b); </code></pre> <p>The work in this code is done on the GPU. However, I would like it to be done asynchronously such that only when the result is needed will the code running on the CPU block (if the result is not finished on the GPU yet). To do this I've created an ExecutionResult class which hides the asynchronous execution. In use this looks as follows:</p> <pre><code>float[] a = new float[]{ ... } float[] b = new float[]{ ... } ExecutionResult res = a.Add(b); float[] c = res; //Implicit converter </code></pre> <p>At the last line the program blocks if the data is done ready yet. I'm not certain of the best way to implement this blocking behavior inside the ExecutionResult class as I'm not very experienced with synchronizing threads and those sorts of things.</p> <pre><code>public class ExecutionResult&lt;T&gt; { private T[] result; private long computed = 0; internal ExecutionResult(T[] a, T[] b, Action&lt;T[], T[], Action&lt;T[]&gt;&gt; f) { f(a, b, UpdateData); //Asych call - 'UpdateData' is the callback method } internal void UpdateData(T[] data) { if (Interlocked.Read(ref computed) == 0) { result = data; Interlocked.Exchange(ref computed, 1); } } public static implicit operator T[](ExecutionResult&lt;T&gt; r) { //This is obviously a stupid way to do it while (Interlocked.Read(ref r.computed) == 0) { Thread.Sleep(1); } return result; } } </code></pre> <p>The Action passed to the constructor is an asynchronous method which performs the actual work on the GPU. The nested Action is the asynchronous callback method.</p> <p>My main concern is how to best/most elegantly handle the waiting done in the converter but also if there are more appropriate ways to attack the problem as a whole. Just leave a comment if there is something I need to elaborate or explain further.</p> http://stackoverflow.com/questions/305279/what-is-the-relationship-between-bayesian-and-neural-networks 3 What is the relationship between bayesian and neural networks? Morten Christiansen 2008-11-20T13:24:13Z 2009-07-19T05:22:40Z <p>I'm looking for computationally heavy tasks to implement with CUDA and wonder if neural networks or bayesian networks might apply. This is not my question, though, but rather what the relation between the two network types is. They seem very related, especially if you look at bayesian networks with a learning capability (which the article on wikipedia mentions). At a glance, bayesian networks look at bit like a specific type of neural networks. Can anyone sum up their relationship, and if there is any connection beyond the apparent similarity?</p> http://stackoverflow.com/questions/1119347/how-to-perform-a-fast-web-request-in-c 2 How to perform a fast web request in C# Morten Christiansen 2009-07-13T13:09:34Z 2009-07-13T14:18:40Z <p>I have a HTTP based API which I potentially need to call many times. The problem is that I can't get the request to take less than about 20 seconds, though the same request made through a browser is near instantaneous. The following code illustrates how I have implemented it so far.</p> <pre><code>WebRequest r = HttpWebRequest.Create("https://example.com/http/command?param=blabla"); var response = r.GetResponse(); </code></pre> <p>One solution would be to make an asynchronous request but I would like to know why it takes so long and if I can avoid it. I have also tried using the WebClient class but I suspect it uses a WebRequest internally.</p> <p><strong>Update:</strong></p> <p>Running the following code took about 40 seconds in Release Mode (measured with Stopwatch):</p> <pre><code>WebRequest g = HttpWebRequest.Create("http://www.google.com"); var response = g.GetResponse(); </code></pre> <p>I'm working at a university where there might be different things in the network configuration affecting the performance, but the direct use of the browser illustrates that it should be near instant.</p> <p><strong>Update 2:</strong></p> <p>I uploaded the code to a remote machine and it worked fine so the conclusion must be that the .NET code does something extra compared to the browser or it has problems resolving the address through the university network (proxy issues or something?!). </p> http://stackoverflow.com/questions/197606/turning-c-methods-into-c-methods 4 Turning C# methods into C++ methods Morten Christiansen 2008-10-13T13:40:30Z 2009-07-10T12:18:43Z <p>I'm exploring various options for mapping common C# code constructs to C++ CUDA code for running on a GPU. The structure of the system is as follows (arrows represent method calls):</p> <p>C# program -> C# GPU lib -> C++ CUDA implementation lib</p> <p>A method in the GPU library could look something like this:</p> <pre><code>public static void Map&lt;T&gt;(this ICollection&lt;T&gt; c, Func&lt;T,T&gt; f) { //Call 'f' on each element of 'c' } </code></pre> <p>This is an extension method to ICollection&lt;> types which runs a function on each element. However, what I would like it to do is to call the C++ library and make it run the methods on the GPU. This would require the function to be, somehow, translated into C++ code. Is this possible?</p> <p>To elaborate, if the user of my library executes a method (in C#) with some arbitrary code in it, I would like to translate this code into the C++ equivelant such that I can run it on CUDA. I have the feeling that there are no easy way to do this but I would like to know if there are any way to do it or to achieve some of the same effect.</p> <p>One thing I was wondering about is capturing the function to translate in an Expression and use this to map it to a C++ equivelant. Anyone has any experience with this?</p> http://stackoverflow.com/questions/488189/how-to-set-the-initial-text-an-a-tinymce-textarea 1 How to set the initial text an a TinyMCE textarea? Morten Christiansen 2009-01-28T16:02:07Z 2009-06-29T22:08:43Z <p>I'm in a curious situation where I previously had no problem achieving what I'm looking for. The following code is a part of an HTML page which is to host a TinyMCE rich textbox:</p> <pre><code>... &lt;textarea id="editing_field"&gt;This text is supposed to appear in the rich textbox&lt;/textarea&gt; ... </code></pre> <p>At first this worked as intended, creating a rich textbox with the enclosed text in it. At some point, though, the TinyMCE code decided that the textarea HTML should be transformed to the following:</p> <pre><code>&lt;textarea id="editing_field" style="display: none;"/&gt; This text is supposed to appear in the rich textbox </code></pre> <p>This renders the text below the textbox which is not exactly ideal. I don't have a clue what caused this change of behavior, though I'm also using jQuery along with it if that could have any effect.</p> <p>I can work around the problem by loading content into the textbox with javascript after the page has loaded, either by using ajax or by hiding the text in the HTML and just moving it. However, I would like to emit the text into the textbox directly from PHP if at all possible. Anyone knows what is going on here and how to fix it?</p> <p><strong>Update 2:</strong> I have succesfully reproduced the situattion which causes the change of behavior: At first I just had plain text in the textarea as in the first code snippet. However, after saving the content the text would look like this:</p> <pre><code>&lt;p&gt;This text is supposed to appear in the rich textbox&lt;/p&gt; </code></pre> <p>The presence of the <code>p</code> tag causes TinyMCE to trigger the transformation between an enclosing textarea to a textarea which is just a single tag (as illustrated above).</p> <p><strong>Update 1:</strong> added TinyMCE config file:</p> <pre><code>tinyMCE.init({ // General options mode : "exact", elements : "editing_field", theme : "advanced", skin : "o2k7", skin_variant : "black", plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template", save_onsavecallback : "saveContent", // Theme options theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull", theme_advanced_buttons2 : "search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,forecolor,backcolor", theme_advanced_buttons3 : "hr,removeformat,|,sub,sup,|,charmap,emotions,|,print,|,fullscreen,code", theme_advanced_buttons4 : "styleselect,formatselect,fontselect,fontsizeselect", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : false, // Drop lists for link/image/media/template dialogs template_external_list_url : "lists/template_list.js", external_link_list_url : "lists/link_list.js", external_image_list_url : "lists/image_list.js", media_external_list_url : "lists/media_list.js", // Replace values for the template plugin template_replace_values : { username : "Some User", staffid : "991234" }, width : "450", height : "500" }); </code></pre> http://stackoverflow.com/questions/873278/image-processing-techniques-direct-manipulation-of-destination-image-or-virtual/873360#873360 3 Answer by Morten Christiansen for image processing techniques - direct manipulation of destination image or virtualized? Morten Christiansen 2009-05-16T21:28:24Z 2009-05-16T21:28:24Z <p>If you don't mind using unsafe code, you can wrap the Bitmap's BitmapData in an object that allows you to efficiently get and set pixels. The below code is mostly taken from <a href="http://www.cnblogs.com/dah/archive/2007/03/30/694527.html" rel="nofollow">a gaussian blur filter</a>, with a couple of modifications of my own. It's not the most flexible code if your bitmap formats differ but I hope it illustrates how you can manipulate bitmaps more efficiently.</p> <pre><code>public unsafe class RawBitmap : IDisposable { private BitmapData _bitmapData; private byte* _begin; public RawBitmap(Bitmap originBitmap) { OriginBitmap = originBitmap; _bitmapData = OriginBitmap.LockBits(new Rectangle(0, 0, OriginBitmap.Width, OriginBitmap.Height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); _begin = (byte*)(void*)_bitmapData.Scan0; } #region IDisposable Members public void Dispose() { OriginBitmap.UnlockBits(_bitmapData); } #endregion public unsafe byte* Begin { get { return _begin; } } public unsafe byte* this[int x, int y] { get { return _begin + y * (_bitmapData.Stride) + x * 3; } } public unsafe byte* this[int x, int y, int offset] { get { return _begin + y * (_bitmapData.Stride) + x * 3 + offset; } } public unsafe void SetColor(int x, int y, Color color) { byte* p = this[x, y]; p[0] = color.B; p[1] = color.G; p[2] = color.R; } public unsafe Color GetColor(int x, int y) { byte* p = this[x, y]; return new Color ( p[2], p[1], p[0] ); } public int Stride { get { return _bitmapData.Stride; } } public int Width { get { return _bitmapData.Width; } } public int Height { get { return _bitmapData.Height; } } public int GetOffset() { return _bitmapData.Stride - _bitmapData.Width * 3; } public Bitmap OriginBitmap { get; private set; } } </code></pre> http://stackoverflow.com/questions/872697/linq-performance-deferred-v-s-immediate-execution/872714#872714 1 Answer by Morten Christiansen for LINQ performance - deferred v/s immediate execution Morten Christiansen 2009-05-16T16:10:33Z 2009-05-16T16:10:33Z <p>In addition to what emaster70 said, when reading values from an array an entire cache line is fetched into the system cache meaning that when looking into the arrays it goes much faster than if you had to fetch from main memory.</p> http://stackoverflow.com/questions/854581/a-bug-in-net 2 A bug in .NET? Morten Christiansen 2009-05-12T19:59:11Z 2009-05-12T21:08:34Z <p>It's with great hesitation that I pose this question because I know that whenever you think you've found a bug in something like the .NET framework it's probably just you doing something wrong. Never the less, I really can't figure out what has caused my current situation.</p> <p>I'm building a ray tracer in C# and in a special case the return statement of a method is never called. The strange thing is that totally unrelated things affect when this behavior takes place.</p> <p>You can see the offending method here:</p> <pre><code>public Primitive FindNearest(ref float distance, Ray ray, ref RayCollision collisionResult) { if (!_initialized) InitUnit(); Primitive hitPrimitive = null; //Search the planes foreach (var plane in RenderEngine.Scene.Planes) { RayCollision collision = plane.Intersect(ray, ref distance); if (collision != RayCollision.Miss) { hitPrimitive = plane; collisionResult = collision; } } if (_spatialStructure == null) { //Default collision detection foreach (Primitive primitive in _primitives) { //RayCollision collision = primitive.Intersect(ray, ref distance); //if (collision != RayCollision.Miss) //{ // hitPrimitive = primitive; // collisionResult = collision; //} } } else { //hitPrimitive = _spatialStructure.GetClosestIntersectionPrimitive(ray, ref distance, out collisionResult); //Console.WriteLine("Was here"); RayCollision collision; Primitive prim = _spatialStructure.GetClosestIntersectionPrimitive(ray, ref distance, out collision); if (collision != RayCollision.Miss) { hitPrimitive = prim; collisionResult = collision; } } return hitPrimitive; } </code></pre> <p>Only one thread is calling this method and on each call, the Console.Writeline statement is executed, but the return statement is never reached. The method is called hundreds of times and on each call, "was here" gets printed to the console.</p> <p>If I comment out the second foreach (the one with all the comments in) the return statement is reached as normal, but the commented out code is never reached anyway. Other types of restructuring of the code can also make it run as intended but again not for any reason that makes sense to me.</p> <p>This behavior looks more like some memory corruption issue one might encounter in C, so I haven't got any clues regarding what might have caused this - except a bug in .NET, that is.</p> <p>Btw, the version of .NET I use is 3.5 sp1.</p> <p><strong>Update 3</strong></p> <p>In the end, it turned out that the break point had been eaten because I was in Release mode. I guess you learn something new every day.</p> <p><strong>Update 2</strong></p> <p>It seems I was so focused on the strange behavior that I didn't see the bug in my code. I have changed the code to reflect this but I'm still having the issue with never triggering the break point at the return statement - which points towards a bug in visual studio (2008) rather than .net. But my code now works, and I guess I'll have to settle with that.</p> <p><strong>Update</strong></p> <p>Here is the disassembly for stepping into the Console.Writeline function which is the last known location before the control flow disappears (There is no source code available to step into). I can't read assembly so I don't know what it means but it might make sense to someone out there.</p> <pre><code>0000002a mov r11,qword ptr [rbx+20h] 0000002e mov rax,qword ptr [r11] 00000031 mov rdx,rdi 00000034 mov rcx,r11 00000037 call qword ptr [rax+000001A0h] 0000003d lea rdx,[rbp+8] 00000041 mov rcx,rbx 00000044 call FFFFFFFFFFF0C410 00000049 jmp 0000000000000050 0000004b jmp 0000000000000050 0000004d nop dword ptr [rax] 00000050 lea rsp,[rbp+10h] 00000054 pop rdi 00000055 pop rbp 00000056 pop rbx 00000057 rep ret 00000059 push rbx 0000005a push rbp 0000005b push rdi 0000005c sub rsp,30h 00000060 mov rbp,qword ptr [rcx+20h] 00000064 mov qword ptr [rsp+20h],rbp 00000069 lea rbp,[rbp+20h] 0000006d lea rdx,[rbp+8] 00000071 mov rcx,qword ptr [rbp+30h] 00000075 call FFFFFFFFFF56F3E9 0000007a nop 0000007b add rsp,30h 0000007f pop rdi 00000080 pop rbp 00000081 pop rbx 00000082 rep ret </code></pre> http://stackoverflow.com/questions/799987/how-to-pass-a-lambda-expression-to-a-c-constructor-from-an-ironpython-script 0 How to pass a lambda expression to a C# constructor from an IronPython script? Morten Christiansen 2009-04-28T21:53:30Z 2009-04-28T23:38:16Z <p>I'm integrating an IronPython scritping engine into my C# raytracer which, so far, has been a breeze even though I'm completely new to Python. There is one particular thing, though, that I need help with. I have a C# class which defines a constructor like this:</p> <pre><code>public CameraAnimation(Action&lt;Camera, float&gt; animation) </code></pre> <p>In C#, I would instantiate this like so:</p> <pre><code>var camAnimation = new CameraAnimation((camera, time) =&gt; camera.Position += new Vector(1, 0, 0)); </code></pre> <p>I can't quite figure out how to make a similar assignment for the Action object in IronPython, so how would the Python syntax look?</p> http://stackoverflow.com/questions/780909/how-to-convert-a-type-to-a-generic-version-given-its-type 1 How to convert a type to a generic version given its type? Morten Christiansen 2009-04-23T09:14:52Z 2009-04-23T15:58:02Z <p>I'm having a spot of trouble with generics in C#. I have to store a number of generic objects together but their type parameter differs so I have made a non-generic interface which they implement. What I'm looking for is a way to convert back to the generic version, given a type object. I know I can do it with reflection but I was wondering if there was a better/more elegant solution.</p> <p>The following code illustrates the problem:</p> <pre><code>interface ITable { public Type Type { get; } } class Table&lt;T&gt; : ITable { public Type Type { get{ return typeof(T); } } } class Program { static void Main(string[] args) { var tables = new Dictionary&lt;string, ITable&gt;(); ... //insert tables DoStuffWithTable(tables["my table"]); //This doesn't work } public static void DoStuffWithTable&lt;T&gt;(Table&lt;T&gt; table) { ...//Some work } } </code></pre> <p>Is there a clean way for me to invoke the generic <code>DoStuffWithTable</code> method based on the instance of the Type object I can get from its interface method?</p> http://stackoverflow.com/questions/597259/when-are-structs-the-answer/759858#759858 0 Answer by Morten Christiansen for When are structs the answer? Morten Christiansen 2009-04-17T10:13:03Z 2009-04-17T10:13:03Z <p>My own ray tracer also uses struct Vectors (though not Rays) and changing Vector to class does not appear to have any impact on the performance. I'm currently using three doubles for the vector so it might be bigger than it ought to be. One thing to note though, and this might be obvious but it wasn't for me, and that is to run the program outside of visual studio. Even if you set it to optimized release build you can get a massive speed boost if you start the exe outside of VS. Any benchmarking you do should take this into consideration.</p> http://stackoverflow.com/questions/242894/cuda-driver-api-vs-cuda-runtime 5 CUDA Driver API vs. CUDA runtime Morten Christiansen 2008-10-28T11:03:26Z 2009-03-20T16:39:48Z <p>When writing CUDA applications, you can either work at the driver level or at the runtime level as illustrated on this image (The libraries are CUFFT and CUBLAS for advanced math):</p> <p><img src="http://www.tomshw.it/guides/hardware/graphic/20080618/images/nvidia-CUDA,Q-7-111103-13.jpg" alt="CUDA layer model" /></p> <p>I assume the tradeoff between the two are increased performance for the low-evel API but at the cost of increased complexity of code. What are the concrete differences and are there any significant things which you cannot do with the high-level API?</p> <p>I am using CUDA.net for interop with C# and it is built as a copy of the driver API. This encourages writing a lot of rather complex code in C# while the C++ equivalent would be more simple using the runtime API. Is there anything to win by doing it this way? The one benefit I can see is that it is easier to integrate intelligent error handling with the rest of the C# code.</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/100421#100421 1 Answer by Morten Christiansen for Favorite Visual Studio keyboard shortcuts Morten Christiansen 2008-09-19T08:11:07Z 2009-03-11T02:06:45Z <p><kbd>Ctrl</kbd>+<kbd>X</kbd></p> <p>This deletes the current line of code.</p> http://stackoverflow.com/questions/583157/convert-object-to-integer-in-php/583210#583210 1 Answer by Morten Christiansen for Convert object to integer in PHP Morten Christiansen 2009-02-24T19:29:20Z 2009-02-24T19:29:20Z <p>You can see the methods of the class <a href="http://framework.zend.com/apidoc/core/Zend%5FGdata/Gdata/Zend%5FGdata%5FExtension%5FOpenSearchTotalResults.html" rel="nofollow">here</a>. Then you can try out the different methods yourself. There is a getText() method for example.</p> http://stackoverflow.com/questions/581930/javascript-calling-c-function-under-sliverlight/582103#582103 0 Answer by Morten Christiansen for Javascript calling C# function under SliverLight Morten Christiansen 2009-02-24T15:05:38Z 2009-02-24T15:05:38Z <p>It's just a thought but do you perhaps need to make the methods public (they don't appear to be in your code)?</p> http://stackoverflow.com/questions/553518/winforms-style-ui-look-and-feel-tips/553600#553600 1 Answer by Morten Christiansen for Winforms Style / UI Look and Feel Tips Morten Christiansen 2009-02-16T15:11:00Z 2009-02-16T15:11:00Z <p>You could create custom versions of the different standard controls you need, inheriting from the original versions but applying custom styles to the custom versions. This would give you a single place to change the styling of a component type. You could also have each of the controls take a style object as a parameter for system-wide styles.</p> http://stackoverflow.com/questions/549023/while-using-linq-sum-rounds-up-the-values-how-to-avoide-that/549044#549044 0 Answer by Morten Christiansen for While using Linq sum rounds up the values. How to avoide that? Morten Christiansen 2009-02-14T12:28:27Z 2009-02-14T12:28:27Z <p>It seems <code>Sum</code> treats the values as integers which causes the rounding. You could either try and typecast the values to floats or provide a type argument to the sum function to use floats. Note - I'm not a VB developer so things might be a bit different than I expect.</p> http://stackoverflow.com/questions/386826/what-could-cause-redraw-issues-on-64-bit-vista-but-not-in-32-bit-in-net-winforms/549024#549024 0 Answer by Morten Christiansen for What could cause redraw issues on 64-bit vista but not in 32-bit in .NET WInForms? Morten Christiansen 2009-02-14T12:15:45Z 2009-02-14T12:15:45Z <p>The fact that you can run the program on a virtual OS without issues suggests that it is a driver issue, because (at least in VirtualPC) the graphics card is emulated. This means that some things which the graphics card would normally handle is now done by the CPU, and thus not interacting with the graphics driver. Mind you that I'm not an expert on virtualization and I suppose the virtualization layer could affect the issue in other ways.</p> http://stackoverflow.com/questions/541409/how-to-apply-a-function-to-an-iqueryable-instance 0 How to apply a function to an IQueryable instance? Morten Christiansen 2009-02-12T14:15:34Z 2009-02-12T14:31:17Z <p>I've begun playing a bit with implementing an IQueryable&lt;T&gt; datatype to query using LINQ. For example I've made a couple of functions like this (It is just a temporary detail that the extension method is not for the specific IQueryable implementation):</p> <pre><code>public static IQueryable&lt;T&gt; Pow&lt;T&gt;(this IQueryable&lt;T&gt; values, T pow) { var e = BinaryExpression.Power(values.Expression, ConstantExpression.Constant(pow)); return values.Provider.CreateQuery&lt;T&gt;(e); } </code></pre> <p>Then I figured it would be useful to apply a function to each element in the IQueryable object but I can't quite figure out how to construct the proper expression. The method signature could look like this:</p> <pre><code>public static IQueryable&lt;T&gt; Map&lt;T&gt;(this IQueryable&lt;T&gt; values, Expression&lt;Func&lt;T,T&gt;&gt; map) { Expression e = ... return values.Provider.CreateQuery&lt;T&gt;(e); } </code></pre> <p>How should I complete this method body?</p> http://stackoverflow.com/questions/541423/plz-validate-my-validation-expression/541445#541445 0 Answer by Morten Christiansen for Plz validate my validation expression :) Morten Christiansen 2009-02-12T14:22:40Z 2009-02-12T14:22:40Z <p>I haven't got an idea for the hyphen issue but I see you missed the characters 'Æ' 'æ' 'Ø' 'ø' 'Å' 'å'.</p> http://stackoverflow.com/questions/536514/when-should-i-use-type-hinting-in-php/536836#536836 0 Answer by Morten Christiansen for (When) should I use type hinting in PHP? Morten Christiansen 2009-02-11T13:48:34Z 2009-02-11T13:48:34Z <p>Without type hinting it would be impossible for the IDE to know the type of a method parameter and thus provide the proper intellisense - your editor does have intellisense, right? ;). It should be said that I just assume IDEs use this for intellisense, as this is the first I've heard of type hinting in PHP (thanks for the hint btw).</p> http://stackoverflow.com/questions/529259/do-database-views-affect-query-performance 4 Do database views affect query performance? Morten Christiansen 2009-02-09T18:24:02Z 2009-02-09T18:51:28Z <p>Are database views only a means to simplify the access of data or does it provide performance benefits when accessing the views as opposed to just running the query which the view is based on? I suspect views are functionally equivalent to just the adding the stored view query to each query on the view data, is this correct or are there other details and/or optimizations happening?</p> http://stackoverflow.com/questions/289719/cuda-memory-troubles 2 CUDA memory troubles Morten Christiansen 2008-11-14T10:33:34Z 2009-02-07T13:34:20Z <p>I have a CUDA kernel which I'm compiling to a cubin file without any special flags:</p> <pre><code>nvcc text.cu -cubin </code></pre> <p>It compiles, though with this message:</p> <blockquote> <p>Advisory: Cannot tell what pointer points to, assuming global memory space</p> </blockquote> <p>and a reference to a line in some temporary cpp file. I can get this to work by commenting out some seemingly arbitrary code which makes no sense to me.</p> <p>The kernel is as follows:</p> <pre><code>__global__ void string_search(char** texts, int* lengths, char* symbol, int* matches, int symbolLength) { int localMatches = 0; int blockId = blockIdx.x + blockIdx.y * gridDim.x; int threadId = threadIdx.x + threadIdx.y * blockDim.x; int blockThreads = blockDim.x * blockDim.y; __shared__ int localMatchCounts[32]; bool breaking = false; for(int i = 0; i &lt; (lengths[blockId] - (symbolLength - 1)); i += blockThreads) { if(texts[blockId][i] == symbol[0]) { for(int j = 1; j &lt; symbolLength; j++) { if(texts[blockId][i + j] != symbol[j]) { breaking = true; break; } } if (breaking) continue; localMatches++; } } localMatchCounts[threadId] = localMatches; __syncthreads(); if(threadId == 0) { int sum = 0; for(int i = 0; i &lt; 32; i++) { sum += localMatchCounts[i]; } matches[blockId] = sum; } } </code></pre> <p>If I replace the line</p> <pre><code>localMatchCounts[threadId] = localMatches; </code></pre> <p>after the first for loop with this line</p> <pre><code>localMatchCounts[threadId] = 5; </code></pre> <p>it compiles with no notices. This can also be achieved by commenting out seemingly random parts of the loop above the line. I have also tried replacing the local memory array with a normal array to no effect. Can anyone tell me what the problem is?</p> <p>The system is Vista 64bit, for what its worth.</p> <p>Edit: I fixed the code so it actually works, though it still produces the compiler notice. It does not seem as though the warning is a problem, at least with regards to correctness (it might affect performance).</p> http://stackoverflow.com/questions/519891/ensure-uniform-ish-distribution-with-random-number-generation/519989#519989 0 Answer by Morten Christiansen for Ensure uniform (ish) distribution with random number generation Morten Christiansen 2009-02-06T11:33:22Z 2009-02-06T11:33:22Z <p>If the items to be queued have a GetHashCode() algorithm which distributes values evenly across all integers, you can take the modulus operator on the hash value to specify which queue to add the item to. This is basically the same principle which hash tables use to assure an even distribution of values.</p> http://stackoverflow.com/questions/519404/how-can-i-delete-windows-restore-points-in-c/519601#519601 0 Answer by Morten Christiansen for How can I delete Windows restore points in c#? Morten Christiansen 2009-02-06T08:55:01Z 2009-02-06T08:55:01Z <p>While I know nothing about WMI, <a href="http://www.csharphelp.com/archives2/archive334.html" rel="nofollow">this</a> resource might get you started. It does not directly touch your issue, but perhaps it can be useful somehow. Anyhow, it seems that the relevant Win32/COM function is <a href="http://msdn.microsoft.com/en-us/library/aa378934.aspx" rel="nofollow">SRRemoveRestorePoint</a>. I hope this was of any use.</p> <p>Alternatively, you can work with <a href="http://support.microsoft.com/?kbid=295299" rel="nofollow">VBScript</a>, if you're so inclined.</p> http://stackoverflow.com/questions/515693/whats-wrong-with-my-soft-shadow-code/515881#515881 1 Answer by Morten Christiansen for What's wrong with my soft-shadow code? Morten Christiansen 2009-02-05T13:27:34Z 2009-02-05T13:27:34Z <p>In your response you asked for an improved way to make soft shadows. An improvement could be, instead of randomizing all the rays from the same point, to give each ray a different offset on all axes to effectively give them a seperate little window to randomize in. This should result in a more even distribution. I don't know if that was clear but another way to describe it is as a grid which is perpendicular to the shadow ray. Each tile in the grid contains one of the n shadow rays but the location in the grid is random. <a href="http://www.devmaster.net/articles/raytracing_series/part5.php" rel="nofollow">Here</a> you can find a part of a tutorial which describes how this can be used for soft shadows.</p> http://stackoverflow.com/questions/505040/developing-a-robocode-type-game-with-net-for-a-school-assignment/505354#505354 2 Answer by Morten Christiansen for Developing a Robocode type game with .Net, for a School Assignment Morten Christiansen 2009-02-02T23:01:27Z 2009-02-02T23:01:27Z <p>When I began working with WPF (which is much the same as Silverlight) I ended up spending a lot of time figuring out how to do things. It is a very different way of making a GUI than what else I've tried and there seems to be a billion different ways to do things. My point is, that if you have no experience with WPF/Silverlight I suspect it is going to take a lot of time for you to wrap your mind around. I guess it depends on what you already know.</p> <p>Apart from than, I wholeheartedly support ChrisW's suggstion about incremental development. I'll give you an idea of how you can approach the design of the game. Start out with a very simple API for the bots, say two functions with no events, input or knowledge of the world. Just start by getting the bots to move. The point is to get a fully functioning program with the simple functionality, including all parts from loading the client code to showing the resulting 'battle'.</p> <p>Each bot should implement an interface with a single method run() and be in their own dll file. When the battle starts, each dll with the interface implemented is loaded (using reflection) from a certain location and instantiated. Then start a battle with a loop until 1 minute has passed (or whatever, just to see that something is going on):</p> <pre><code>while (time is not up) generate random sequence for bots call run() on each bot draw(world) </code></pre> <p>When the time is up, the battle is over. Now you have a skeleton application which you can begin to flesh out and which will let you have a working program, even if you won't have time to make all the functionality you would like. In the run method, the bots can call the couple of move actions you have defined in the API. Calling these will change the state of the world - probably just a grid of tiles, and the location of each bot.</p> <p>The next step could be to add a view of the world to the bots' run method, changing the loop to this:</p> <pre><code>while (time is not up) generate random sequence for bots call run(WorldView) on each bot draw(world) </code></pre> <p>Let's say that the bots can still only perform a couple of move actions in their run method. Now they have the option of getting a view of the world (or their part of it) which allows them to move towards or away from enemies and avoid walls.</p> <p>In the next iteration you could then create a single API function to shoot you cannon (or whatever is appropriate your game). Implement how this changes the world state, how the bullets are tracked and how the animation is represented, etc. The loop could look something like this:</p> <pre><code>while (time is not up and there are more than 1 bot alive) advance projectiles calculate projectile-bot collisions and damage generate random sequence for bots call run(WorldView) on each bot draw(world) </code></pre> <p>I hope this gives you an idea of how you can iteratively flesh out the program, all the while having a working program that reflects all the areas of the game. I don't have much experience with implementing games, so you should look at my advice with a critical eye but this is how I would attack the problem.</p> http://stackoverflow.com/questions/498698/white-light-vs-black-dark-backgrounds-health-effects/498738#498738 0 Answer by Morten Christiansen for White (Light) vs. Black (Dark) Backgrounds: Health Effects Morten Christiansen 2009-01-31T12:25:37Z 2009-01-31T12:25:37Z <p>There is no doubt that a white background can be more harmful than a black one, but it depends on the brightness of your monitor. I recently got a new 24" monitor which is very bright. At the time I was always using white backgrounds for developing which was fine during the day but when it got dark my eyes would get increasingly irritated and itchy. Of course you can offset this somewhat by changing your monitor's brightness during the course of the day but I really found a dark background to be helpful.</p> <p>Scott Hanselman had a useful post with a number of dark themes for Visual Studio: <a href="http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx" rel="nofollow">linkage</a>. I particular like the last theme.</p> <p>I can still get a little annoyed when, during the night, I need to go to the screamingly bright SO site to solve a problem :)</p> http://stackoverflow.com/questions/488189/how-to-set-the-initial-text-an-a-tinymce-textarea/491650#491650 0 Answer by Morten Christiansen for How to set the initial text an a TinyMCE textarea? Morten Christiansen 2009-01-29T13:51:32Z 2009-01-29T13:51:32Z <p>It appears that I have solved the problem, unless there are any edge cases which ruins the solution. I use the following PHP code on page content before I save it to the database:</p> <pre><code>$content = str_replace(chr(10), "", $content); $content = str_replace(chr(13), "", $content); $content = str_ireplace('&lt;','&amp;#x200B;&lt;',$content); </code></pre> <p>What it does is it removes any newlines and then prepend a zero-width invisible character before any beginning tag. This text is then later inserted between the textarea tags before TinyMCE does its magic. I don't know why but this does not trigger the problem and the appended characters are not shown in the final html or in the html view of TinyMCE, so the only problems I can see with this solution is the performance hit. A detail is that it appears only the start tags need to be prepended in this way, but I haven't taken this into consideration here, for simplicity.</p> http://stackoverflow.com/questions/58649/how-to-get-the-exif-data-from-a-file-using-c/58669#58669 Comment by Morten Christiansen on How to get the EXIF data from a file using C# Morten Christiansen 2009-11-18T12:50:16Z 2009-11-18T12:50:16Z Use the Image.SetPropertyItem(PropertyItem) function on the new image. http://stackoverflow.com/questions/1526675/mouseover-hover-effect-slow-on-ie8 Comment by Morten Christiansen on Mouseover/hover effect slow on IE8 Morten Christiansen 2009-11-09T14:34:17Z 2009-11-09T14:34:17Z Would love to hear an answer to this one as I'm having the exact same issue. The problem is that I can't use the css :hover solution as the hover event must change the style of a different element than the one the mouse is over. http://stackoverflow.com/questions/157528/how-to-freeze-gridview-header/157606#157606 Comment by Morten Christiansen on How to freeze GridView header? Morten Christiansen 2009-10-14T20:44:12Z 2009-10-14T20:44:12Z Also, expressions no longer work in IE8. http://stackoverflow.com/questions/854581/a-bug-in-net/854884#854884 Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T21:27:47Z 2009-05-12T21:27:47Z I kinda had a feeling that it would turn out this way, but I didn't know what else to do. Anyways, I learned some useful things about how to approach debugging and got my problem solved so it was well worth it. http://stackoverflow.com/questions/854581/a-bug-in-net Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:52:18Z 2009-05-12T20:52:18Z @Maghis - I think you spotted the trouble, now I feel a bit silly, but I guess we learn something new every day :) http://stackoverflow.com/questions/854581/a-bug-in-net Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:50:44Z 2009-05-12T20:50:44Z Thanks for all the great suggestions, I'm a bit new to debugging with visual studio so the comments are very helpful. As described in my second update the code now works, but I never got the break point to trigger on the return statement (VS bug?) http://stackoverflow.com/questions/854581/a-bug-in-net/854651#854651 Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:46:59Z 2009-05-12T20:46:59Z @Joseph - thanx for asking that, it led me to find the bug described in my second update. Now the code works but the return statement never has its break point triggered. http://stackoverflow.com/questions/854581/a-bug-in-net Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:28:39Z 2009-05-12T20:28:39Z I can't step into a .Net library function - it says there is no source code and I'm afraid the disassembly doesn't do much for me (I guess I can update the question with it, though). http://stackoverflow.com/questions/854581/a-bug-in-net/854651#854651 Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:22:43Z 2009-05-12T20:22:43Z Yes, I'm debugging the app. After the &quot;Was here&quot; line gets executed, the execution just seems to leave the method and continue after the method at the call site. http://stackoverflow.com/questions/854581/a-bug-in-net/854635#854635 Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:20:59Z 2009-05-12T20:20:59Z Wrapping the contents of the method in a try-catch shows that no exceptions halted the method call. http://stackoverflow.com/questions/854581/a-bug-in-net Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:17:22Z 2009-05-12T20:17:22Z With a breakpoint. Also, the variable being assigned the result of the method is always null, as though the method was never called. http://stackoverflow.com/questions/854581/a-bug-in-net/854606#854606 Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:11:51Z 2009-05-12T20:11:51Z With regards to threading, there are two threads - a worker thread which does all the work and the main program thread which just waits for the worker to complete all its work (using Join()). Other threads would hae to be some hidden thread work by .NET though I can't see what it should be. http://stackoverflow.com/questions/854581/a-bug-in-net/854601#854601 Comment by Morten Christiansen on A bug in .NET? Morten Christiansen 2009-05-12T20:08:13Z 2009-05-12T20:08:13Z There is nothing between the &quot;Was here&quot; line and the return statement that can throw an exception - and if there was it would cause the program to crash (I tried throwing an Exception to make sure). http://stackoverflow.com/questions/799987/how-to-pass-a-lambda-expression-to-a-c-constructor-from-an-ironpython-script Comment by Morten Christiansen on How to pass a lambda expression to a C# constructor from an IronPython script? Morten Christiansen 2009-04-29T07:15:35Z 2009-04-29T07:15:35Z Heh, if you insist. My approach to converting C# code to Python was to paste the C# into a .py file and remove stuff until it compiled. This mostly worked but unfortunately distracted me from the rather obvious point that I should just declare a function and pass it as a parameter. http://stackoverflow.com/questions/780909/how-to-convert-a-type-to-a-generic-version-given-its-type/780930#780930 Comment by Morten Christiansen on How to convert a type to a generic version given its type? Morten Christiansen 2009-04-23T09:38:27Z 2009-04-23T09:38:27Z I feared as much, but the generic method is in a third part library so there is no way to avoid it.