首页 \ 问答 \ 加速C ++实践编程实例中的概念今天仍然存在吗?(Do the concepts in Accelerated C++ Practical Programming by Example still hold up today? [closed])

加速C ++实践编程实例中的概念今天仍然存在吗?(Do the concepts in Accelerated C++ Practical Programming by Example still hold up today? [closed])

我被推荐了一本名为:

Andrew Koenig和Barbara E. Moo的加速C ++实践编程Addison-Wesley,2000国际标准书号0-201-70353-X

本书的基础是面向对象编程在内存方面非常浪费,并且大多数源代码不应该以这种方式编写,而是应该使用所有内联函数调用和过程编程。

我的意思是我知道大多数编程书籍都有与牛奶相同的保质期,但如果您编写客户端/服务器应用程序(数据库,服务器和所有)(不是设备驱动程序或视频游戏),那么真的值得拥有麻烦不可维护的代码只是为了加速?

或者仅仅让应用程序在客户端的旧机器上运行是否值得? 或者能够在一个盒子上运行更多服务器?


I was recommeded a book called:

Accelerated C++ Practical Programming by Example by Andrew Koenig and Barbara E. Moo Addison-Wesley, 2000 ISBN 0-201-70353-X

The basis of this book is that Object Oriented Programming is highly wasteful memory-wise, and that most source-code should not be written this way, rather that you should use all inline function calls and procedural programming.

I mean I know most programming books have about the same shelf life as milk, but if your coding a client/server application (database, server and all) (not a device driver or a video game) is it really worth the hassle of having un-maintainable code just for a speed boost?

Or is it worth it just to make the application run on a client's really old machine? Or to be able to run more servers on a single box?


原文:https://stackoverflow.com/questions/212669
更新时间:2023-06-18 06:06

最满意答案

我经常在Fortran中编写数据并用Python读取它。 我将在这里解释一个多3D阵列的情况,因为它更通用,很容易适应一维阵列。

从Fortran,我用以下循环编写数据:

file = 'my_fortran_data.dat'
open(99, file=file, status = 'replace', action = 'write', form = 'unformatted', access='stream')
    do k = 1,L
        do j = 1,M
            do i = 1,N
                write(99) u(i,j,k), v(i,j,k), w(i,j,k)
            end do
        end do
    end do
close(99)

请注意,我在stream访问中编写数据。 因此,我不记录每条记录的开头和结尾(使文件大小变小)。

从Python,我使用以下函数来读取数据:

def read_data(file, dtype, stream):
    """
    Return the components of a 3D vector field stored in binary format.
    The data field is supposed to have been written as: (for k; for j; for i;) where the last dimension
    is the quickest varying index. Each record should have been written as: u, v, w.
    The returned components are always converted in np.double precision type.

    Args:
        dim: number of dimensions
        dtype: numpy dtype object. Single or double precision expected.
        stream: type of access of the binary output. If true, the file can only contain data. 
    If false, there is a 4-byte header and footer around each "record"
            in the binary file (can happen in some Fortran compilers if access != 'stream').
    """
    if stream:
        shape = (L, M, N, 3)
        f = open(file, 'rb')
        data = np.fromfile(file=f, dtype=dtype).reshape(shape)
        f.close()
        u = data[:, :, :, 0].transpose(2, 1, 0)
        v = data[:, :, :, 1].transpose(2, 1, 0)
        w = data[:, :, :, 2].transpose(2, 1, 0)
        del data

    else:
        shape = (L, M, N, 5)
        f = open(file, 'rb')
        data = np.fromfile(file=f, dtype=dtype).reshape(shape)
        f.close()
        u = data[:, :, :, 1].transpose(2, 1, 0)
        v = data[:, :, :, 2].transpose(2, 1, 0)
        w = data[:, :, :, 3].transpose(2, 1, 0)
        del data

    u = u.astype(np.float64, copy=False)
    v = v.astype(np.float64, copy=False)
    w = w.astype(np.float64, copy=False)
    return(u, v, w)

请注意,我总是将数据转换为双精度,但如果不需要,可以省略最后一步。

对于您的情况,使用shape=(10,2)进行stream访问,否则使用shape=(10,4)


I often write data in Fortran and read it in Python. I will explain it here for a multiple 3D arrays case since it is more general and easily adaptable to a 1D array.

From Fortran, I write the data with the following loop:

file = 'my_fortran_data.dat'
open(99, file=file, status = 'replace', action = 'write', form = 'unformatted', access='stream')
    do k = 1,L
        do j = 1,M
            do i = 1,N
                write(99) u(i,j,k), v(i,j,k), w(i,j,k)
            end do
        end do
    end do
close(99)

Note that I write my data in stream access. Hence I do not record the begining and end of each record (making the file size smaller).

From Python, I use the following function to read the data in:

def read_data(file, dtype, stream):
    """
    Return the components of a 3D vector field stored in binary format.
    The data field is supposed to have been written as: (for k; for j; for i;) where the last dimension
    is the quickest varying index. Each record should have been written as: u, v, w.
    The returned components are always converted in np.double precision type.

    Args:
        dim: number of dimensions
        dtype: numpy dtype object. Single or double precision expected.
        stream: type of access of the binary output. If true, the file can only contain data. 
    If false, there is a 4-byte header and footer around each "record"
            in the binary file (can happen in some Fortran compilers if access != 'stream').
    """
    if stream:
        shape = (L, M, N, 3)
        f = open(file, 'rb')
        data = np.fromfile(file=f, dtype=dtype).reshape(shape)
        f.close()
        u = data[:, :, :, 0].transpose(2, 1, 0)
        v = data[:, :, :, 1].transpose(2, 1, 0)
        w = data[:, :, :, 2].transpose(2, 1, 0)
        del data

    else:
        shape = (L, M, N, 5)
        f = open(file, 'rb')
        data = np.fromfile(file=f, dtype=dtype).reshape(shape)
        f.close()
        u = data[:, :, :, 1].transpose(2, 1, 0)
        v = data[:, :, :, 2].transpose(2, 1, 0)
        w = data[:, :, :, 3].transpose(2, 1, 0)
        del data

    u = u.astype(np.float64, copy=False)
    v = v.astype(np.float64, copy=False)
    w = w.astype(np.float64, copy=False)
    return(u, v, w)

Note that I always convert the data into double precision but you can omit this last step if not required.

For your case use shape=(10,2) for the stream access or shape=(10,4) otherwise.

相关问答

更多

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)