julia 1.13.0 DEV
The Julia Language V1.13.0-DEV.639 The Julia Project May 27, 2025Contents Contents i I Manual 1 1 Julia 1.13-DEV Documentation 2 1.1 Important Links . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2043Part I Manual 1Chapter 1 Julia 1.13-DEV Documentation Welcome to the documentation for Julia 1.13-DEV. Work in progress! This documentation is for an unreleased, in-development changed since the last release. Note The documentation is also available in PDF format: julia-1.13.0-DEV.pdf. 1.1 Important Links Below is a non-exhaustive list of links that will be useful as you learn0 码力 | 2058 页 | 7.45 MB | 3 月前3Django CMS 3.0.x Documentation
django cms Documentation Release 3.0.19.dev1 Patrick Lauber June 13, 2016 Contents 1 Overview 1 2 Join us online 3 3 Why django CMS? 5 4 Release Notes 7 5 Table of contents 9 5.1 Tutorials . . . . Tutorials, How-to guides, Key topics and Reference sections. 1 django cms Documentation, Release 3.0.19.dev1 2 Chapter 1. Overview CHAPTER 2 Join us online django CMS is supported by a friendly and very knowledgeable list for discussions about the development of django CMS 3 django cms Documentation, Release 3.0.19.dev1 4 Chapter 2. Join us online CHAPTER 3 Why django CMS? django CMS is a well-tested CMS platform that0 码力 | 180 页 | 1.56 MB | 6 月前3Bridging the Gap: Writing Portable Programs for CPU and GPU
#define CUDATAGS 3 #ifndef 4 #define HST 5 #define DEV 6 #else 7 #define HST __host__ 8 #define DEV __device__ 9 #endif 10 #endif 11 12 HST DEV 13 void func () {} � �24/66 Motivation Patterns The dark path Cuda proposal Thank you host device template - Solution � � 1 enum class HDC { Hst , Dev , HstDev }; 2 3 #define MACRO( targ_ , hdc_ , func_ ) \ 4 template < targ_ , HDC x = hdc_ > requires( requires( x == HDC::Hst ) \ 5 __host__ func_ \ 6 template < targ_ , HDC x = hdc_ > requires( x == HDC::Dev ) \ 7 __device__ func_ \ 8 template < targ_ , HDC x = hdc_ > requires( x == HDC:: HstDev ) \ 9 __host__0 码力 | 124 页 | 4.10 MB | 5 月前3Making Libraries Consumable for Non-C++ Developers
/* Opens the device with name ‘dev’. On failure to open, returns SIZE_MAX. */ size_t open_device(char const* dev); size_t open_device(std::wstring_view const dev); The types char and wchar_t do has memory implications. More on that later.What assumptions are being made? void get_size(size_t dev, long* size); Non-C/C++ language. Caller of get_size(). C/C++ binary. Provides get_size(). gcc struct data_t { int a; int b; }; /* Get data from device ‘dev’. */ data_t get_data_from(size_t dev); What defines how dev is passed or data_t is returned? Calling conventions… sigh. Which0 码力 | 29 页 | 1.21 MB | 5 月前3Rust 程序设计语言 简体中文版 1.85.0
下,输入下面的命令来构建项目: $ cargo build Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) in 2.85 secs 这个命令会创建一个可执行文件 target/debug/hello_cargo (在 Windows /target/debug/hello_cargo 运行了程序,也 可以使用 cargo run 在一个命令中同时编译并运行生成的可执行文件: $ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs Running `target/debug/hello_cargo` Hello, world 会在运行之前重新构建项目,并会出现像这样的输出: $ cargo run Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) in 0.33 secs Running `target/debug/hello_cargo` Hello, world0 码力 | 562 页 | 3.23 MB | 9 天前3Spanny 2: Rise of std::mdspan
kinematic model of robot arm */; auto arbiter = arbiter_single{left_arm, std::make_unique("/dev/ttyACM0")}; auto bin_checker = bin_checker_t{&arbiter}; auto bins = bin_view_t(bin_positions.data() arbiter = arbiter_dual{left_arm, std::make_unique ("/dev/ttyACM0"), right_arm, std::make_unique ("/dev/ttyACM1")}; auto bin_checker = bin_checker_t{&arbiter}; arbiter = arbiter_dual_async{left_arm, std::make_unique ("/dev/ttyACM0"), right_arm,std::make_unique ("/dev/ttyACM1"), bin_grid}; auto 0 码力 | 117 页 | 2.02 MB | 5 月前3Oracle VM VirtualBox 5.2.40 User Manual
depending on your Linux system. The procedure is slightly different for a classical Linux setup with a /dev directory, a system with the now deprecated devfs and a modern Linux system with udev. On certain Linux general, make sure that the correct Linux kernel sources are used for the build process. Note that the /dev/vboxdrv kernel module device node must be owned by root:root and must be read/writable only for the zonecfg:vboxzone>add device zonecfg:vboxzone:device>set match=/dev/vboxdrv zonecfg:vboxzone:device>end zonecfg:vboxzone>add device zonecfg:vboxzone:device>set match=/dev/vboxdrvu zonecfg:vboxzone:device>end zonecfg:vboxzone>exit0 码力 | 387 页 | 4.27 MB | 6 月前3Oracle VM VirtualBox 5.2.12 User Manual
depending on your Linux system. The procedure is slightly different for a classical Linux setup with a /dev directory, a system with the now deprecated devfs and a modern Linux system with udev. On certain Linux general, make sure that the correct Linux kernel sources are used for the build process. Note that the /dev/vboxdrv kernel module device node must be owned by root:root and must be read/writable only for the zonecfg:vboxzone>add device zonecfg:vboxzone:device>set match=/dev/vboxdrv zonecfg:vboxzone:device>end zonecfg:vboxzone>add device zonecfg:vboxzone:device>set match=/dev/vboxdrvu zonecfg:vboxzone:device>end zonecfg:vboxzone>exit0 码力 | 380 页 | 4.23 MB | 6 月前3Just-In-Time Compilation: The Next Big Thing
22JITTING USER CODE? WHY NOT JIT DEV CODE? JITTING USER CODE? WHY NOT JIT DEV CODE? 6 . 23JITTING USER CODE? WHY NOT JIT DEV CODE? JITTING USER CODE? WHY NOT JIT DEV CODE? BREAKING DOWN THE WALLS OF DOWN THE WALLS OF THE COMPILER & LINKER 6 . 23JITTING USER CODE? WHY NOT JIT DEV CODE? JITTING USER CODE? WHY NOT JIT DEV CODE? BREAKING DOWN THE WALLS OF THE COMPILER & LINKER BREAKING DOWN THE WALLS INCREMENTAL COMPILATION ON A RUNNING SYSTEM 6 . 23JITTING USER CODE? WHY NOT JIT DEV CODE? JITTING USER CODE? WHY NOT JIT DEV CODE? BREAKING DOWN THE WALLS OF THE COMPILER & LINKER BREAKING DOWN THE WALLS0 码力 | 222 页 | 5.45 MB | 5 月前3Oracle VM VirtualBox 4.1.40 User Manual
depending on your Linux system. The procedure is slightly different for a classical Linux setup with a /dev directory, a system with the now deprecated devfs and a modern Linux system with udev. On certain Linux general, make sure that the correct Linux kernel sources are used for the build process. Note that the /dev/vboxdrv kernel module device node must be owned by root:root and must be read/writable only for the match=/dev/vboxdrv zonecfg:vboxzone:device>end zonecfg:vboxzone>verify zonecfg:vboxzone>exit If you are running VirtualBox 2.2.0 or above on Solaris 11 or Nevada hosts, you should add a device for /dev/vboxusbmon0 码力 | 310 页 | 4.87 MB | 6 月前3
共 111 条
- 1
- 2
- 3
- 4
- 5
- 6
- 12