码迷,mamicode.com
首页 >  
搜索关键字:parallel programming    ( 5722个结果
参数调优
--查询检测是否已设置 SQL>show parameter log_file_sync SQL>show parameter parallel_force_local SQL>select client_name,status from dba_autotask_client; SQL>selec ...
分类:其他好文   时间:2020-05-15 00:39:32    阅读次数:79
For loop in MATLAB,R,C programming language.
MATLAB和R都是向量式程序设计语言,有很多相通的地方,在学习中可以互相参考。 MATLAB中的for循环: %Show from 1 to 100 for i = 1:100 disp(i); end R语言中的for循环: #Show from 1 to 100. for (i in 1:10 ...
分类:其他好文   时间:2020-05-15 00:18:09    阅读次数:61
C# 多线程 Parallel.ForEach 和 ForEach 效率问题研究及理解
原文地址:https://blog.csdn.net/li315171406/article/details/78450534 最近要做一个大数据dataTable循环操作,开始发现 运用foreach,进行大数据循环,并做了一些逻辑处理。在循环中耗费的时间过长。后来换成使用Parallel.For ...
分类:编程语言   时间:2020-05-14 13:34:12    阅读次数:65
delphi inline assembly {asm}
https://community.idera.com/developer tools/programming languages/f/c libraries/72223/inline assembly this code compiles well `` this one indicates an ...
分类:Windows程序   时间:2020-05-14 12:45:52    阅读次数:89
基于mykernel 2.0编写一个操作系统内核
基于mykernel 2.0编写一个操作系统内核 一、实验要求 基于mykernel 2.0编写一个操作系统内核 配置mykernel 2.0,熟悉Linux内核的编译; 基于mykernel 2.0,编写一个操作系统内核; 简要分析操作系统内核核心功能及运行工作机制; 具体实现参考孟宁老师gith ...
分类:其他好文   时间:2020-05-12 20:49:50    阅读次数:71
x01.editor: 语法高亮编辑器
学习《Tkinter GUI Programming By Example》时,发现了语法高亮编辑器和聊天程序还不错。语法高亮编辑器如下,聊天程序可在下载中获取。 1. 效果图 2. 代码 import os, sys CurrDir = os.path.dirname(__file__) sys. ...
分类:其他好文   时间:2020-05-12 11:52:51    阅读次数:81
Cairo graphics tutorial
Introduction This is Cairo graphics tutorial. The tutorial will teach you the basics of graphics programming in Cairo with the C programming language. ...
分类:其他好文   时间:2020-05-11 23:30:06    阅读次数:88
GTK# tutorial
This is GTK tutorial for the C programming language. This tutorial is suitable for beginners and more advanced programmers. GTK\ GTK is a wrapper over ...
分类:其他好文   时间:2020-05-11 23:23:23    阅读次数:91
spring AOP
转自 https://www.cnblogs.com/xrq730/p/4919025.html AOP AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善。OOP引入封 ...
分类:编程语言   时间:2020-05-11 11:40:41    阅读次数:66
3、Hive-sql优化,数据倾斜处理
一、Hive-sql优化 #增加reducer任务数量(拉取数量分流) set mapred.reduce.tasks=20; #在同一个sql中的不同的job是否可以同时运行,默认为false set hive.exec.parallel=true; #增加同一个sql允许并行任务的最大线程数 s ...
分类:数据库   时间:2020-05-11 01:21:52    阅读次数:80
5722条   上一页 1 ... 19 20 21 22 23 ... 573 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!