This file contains 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
.text | |
.amdgcn_target "amdgcn-amd-amdhsa--gfx700" | |
.globl wibble ; -- Begin function wibble | |
.p2align 8 | |
.type wibble,@function | |
wibble: ; @wibble | |
; %bb.0: ; %bb | |
s_mov_b32 s2, exec_lo | |
v_cmpx_gt_u32_e32 10, v0 | |
s_cbranch_execz .LBB0_8 |
This file contains 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
using JSON3 | |
jitdump = open(JSON3.read, "/home/vchuravy/Downloads/jitdump.json") | |
pmap = readlines("/home/vchuravy/Downloads/process_map.txt") | |
struct AddrRange | |
start::UInt | |
fin::UInt | |
end | |
function AddrRange(s::AbstractString) |
This file contains 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
// This file is a part of Julia. License is MIT: https://julialang.org/license | |
// float16 intrinsics | |
// TODO: use LLVM's compiler-rt | |
#include <stdint.h> | |
#include <string.h> // memcpy | |
#include <math.h> // memcpy | |
static inline float half_to_float(uint16_t ival) |
This file contains 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
; ModuleID = 'Float16' | |
source_filename = "Float16" | |
target datalayout = "e-m:e-i64:64-n32:64" | |
target triple = "powerpc64le-unknown-linux-gnu" | |
; @ gmp.jl:436 within `Float16' | |
define half @julia_Float16_50({} addrspace(10)* nonnull align 8 dereferenceable(16) %0) !dbg !5 { | |
top: | |
; @ gmp.jl:437 within `Float16' | |
; ┌ @ gmp.jl:648 within `==' |
This file contains 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
# This file is part of PulseAudio. | |
# | |
# PulseAudio is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as | |
# published by the Free Software Foundation; either version 2.1 of the | |
# License, or (at your option) any later version. | |
# | |
# PulseAudio is distributed in the hope that it will be useful, but | |
# WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
This file has been truncated, but you can view the full file.
This file contains 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
I: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted | |
I: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted | |
D: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us. | |
D: [pulseaudio] core-util.c: RealtimeKit worked. | |
I: [pulseaudio] core-util.c: Successfully gained nice level -11. | |
I: [pulseaudio] main.c: This is PulseAudio 13.99.2-13-g7f4d7 | |
D: [pulseaudio] main.c: Compilation host: x86_64 | |
D: [pulseaudio] main.c: Compilation CFLAGS: Not yet supported on meson | |
D: [pulseaudio] main.c: Running on host: Linux x86_64 5.8.14-arch1-1-vc #4 SMP PREEMPT Thu, 08 Oct 2020 14:03:39 +0000 | |
D: [pulseaudio] main.c: Found 16 CPUs. |
This file contains 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
# This file is machine-generated - editing it directly is not advised | |
[[Base64]] | |
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" | |
[[Cassette]] | |
git-tree-sha1 = "09aed2c4093e9ed29b08f6660ad959fcb6847cd1" | |
uuid = "7057c7e9-c182-5462-911a-8362d720325c" | |
version = "0.2.5" |
This file contains 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
.text | |
Filename: threads.jl | |
ld 2, -8(12) | |
add 2, 2, 12 | |
mflr 0 | |
std 31, -8(1) | |
std 0, 16(1) | |
stdu 1, -1264(1) | |
mr 31, 1 | |
std 14, 1120(31) |
This file contains 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 | |
# Original script from https://github.com/gregvw/amd_sdk/ | |
# Location from which get nonce and file name from | |
URL="http://developer.amd.com/tools-and-sdks/opencl-zone/opencl-tools-sdks/amd-accelerated-parallel-processing-app-sdk/" | |
URLDOWN="http://developer.amd.com/amd-license-agreement-appsdk/" | |
NONCE1_STRING='name="amd_developer_central_downloads_page_nonce"' | |
FILE_STRING='name="f"' |
This file contains 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
function ljconfig(N, per=0.2) | |
# mesh-grid-like construction | |
X = (0:N) * ones(1,N) | |
Y = X' | |
# write all particles into a single array | |
x = [X[:]', Y[:]'] | |
x = x + per * rand(size(x)) | |
end | |
N=50 |
NewerOlder