% Algoritme ... Paralel (dengan Skema Partisi ...)
% Nama, Anggota, Kelompok
% 2015
# Pendahuluan
- sekilas tentang algoritme
- manfaat algoritme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <pthread.h> | |
#define T 2 | |
#define N 4 | |
int A[N][N] = {{1,0,1,0},{0,1,1,0},{1,0,1,0},{0,1,1,0}}; | |
int B[N][N] = {{0,2,2,0},{2,0,2,0},{0,2,2,0},{2,0,2,0}}; | |
int C[N][N] = {{0}}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Xubuntu 16.04 Lab Install | |
# <https://gist.github.com/auriza/e45690fc728a3e98b7d936c12bd2906a> | |
# INSTALL BASE SYSTEM (MANUAL ONE BY ONE) -------------------------------------- | |
## Fresh install | |
# - Welcome : [Install Xubuntu] | |
# - Prepare : uncheck all options, [Continue] | |
# - Install : (*) Erase disk and install Xubuntu, [Install Now], [Continue] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Shell | |
===== | |
Shell adalah program yang membuat proses child untuk menjalankan string perintah yang diberikan. | |
Shell berupa infinite looping yang berisi siklus fork--exec--wait. | |
Lengkapilah kode berikut ini untuk membuat program shell sederhana! | |
Contoh masukan dan keluaran | |
--------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="id-ID"> | |
<info> | |
<title>Institut Pertanian Bogor: Pedoman Penulisan Karya Ilmiah Edisi ke-4 (Indonesian)</title> | |
<id>http://www.zotero.org/styles/institut-pertanian-bogor</id> | |
<link href="http://www.zotero.org/styles/institut-pertanian-bogor" rel="self"/> | |
<link href="http://www.zotero.org/styles/apa" rel="template"/> | |
<link href="http://ppki.staff.ipb.ac.id/unduhan/" rel="documentation"/> | |
<link href="https://drive.google.com/file/d/0B0YEuQotqd_BQVpkR0lHNHctSHM/view" rel="documentation"/> | |
<author> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
CREATE TABLE bukutamu ( | |
id SERIAL PRIMARY KEY, | |
nama VARCHAR(50) NOT NULL, | |
email VARCHAR(50) NOT NULL, | |
pesan TEXT NOT NULL | |
); | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For complete documentation of this file, please see Geany's main documentation | |
[styling] | |
# Edit these in the colorscheme .conf file instead | |
default=default | |
comment=comment_line | |
commentblock=comment | |
commentdirective=comment | |
number=number_1 | |
string=string_1 | |
operator=operator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <unistd.h> | |
#include <omp.h> | |
int main() { | |
int i, j; | |
int n = 5; | |
// for --> imbalance |
OlderNewer