Visual Studio手表在向量浮点中有一半的数字错误地显示为零(<s&39;Watch's&39;s&39;Watch's;Watch')

Visual Studio#39;s #39;watch#39; incorrectly shows zero for half of the numbers in a Vectorlt;floatgt;(Visual Studio手表在向量浮点中有一半的数字错误地显示为零(lt;s39;Watch#39;s39;s39;Watch#39;s;Watch#39;))
本文介绍了Visual Studio手表在向量浮点中有一半的数字错误地显示为零(<s&39;Watch's&39;s&39;Watch's;Watch')的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是VS 2017手表中的一个错误,还是我做了什么蠢事?它不会显示Vector的一半内容。(在我的系统上,Vector.Count为8)。

    [Test]
    public void inspectVector()
    {
        var numbers = new float[] { 1, 2, 3, 4, 5, 6, 7, 8 };

        var inputVector = new Vector<float>(numbers);


        var five = inputVector[4]; //this is fine - 5

        float[] numbersCopiedBack = new float[8];  
        inputVector.CopyTo(numbersCopiedBack); //this is fine - 1, 2, 3, 4, 5, 6, 7, 8
    }

这似乎很奇怪。为什么对inputVector的监视没有显示一半的数字,即使在其他方面看起来行为正确呢?该问题也存在于监视窗口中-但是,ToString()正确显示<1, 2, 3, 4, 5, 6, 7, 8>

我运行的是Microsoft Visual Studio专业版2017, 版本15.4.215.7.5,并使用System.Numerics.Vectors版本4.5.0。我尝试过调试和发布;我在关闭优化的情况下运行(AFAIK在这种情况下,您实际上不会得到SIMD优化;但在这里,我只想调试一个算法)。

推荐答案

显然,这实际上是一个已知问题-"调试器在没有后备字段的情况下无法正确处理字节。"-https://github.com/dotnet/coreclr/issues/16280。

这篇关于Visual Studio手表在向量浮点中有一半的数字错误地显示为零(&lt;s&39;Watch&#39;s&39;s&39;Watch&#39;s;Watch&#39;)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)