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
// | |
// Generated by LLVM NVPTX Back-End | |
// | |
.version 8.4 | |
.target sm_90a | |
.address_size 64 | |
// .globl _copy_2d_tma_kernel | |
.extern .shared .align 16 .b8 global_smem[]; |
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
#include <stdlib.h> // malloc, free, exit | |
#include <stdio.h> // fprintf, perror, fopen, etc. | |
#define ZSTD_STATIC_LINKING_ONLY | |
#include <zstd.h> | |
#include "common.h" | |
int main() { | |
ZSTD_CCtx* cctx = ZSTD_createCCtx(); |
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
* soft memlock 1283980 | |
* hard memlock 1283980 | |
root hard nofile 655350 | |
root soft nofile 655350 | |
* - memlock 5000000 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Disp "X^Y MOD Z" | |
Prompt X,Y,Z | |
If Z<=1 | |
Then | |
Disp "ERROR" | |
Return | |
End | |
1->W |
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
target: | |
g++ -o test_levmarq.exe test_levmarq.cpp levmarq.cpp |
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
<script> | |
var doIt = true; | |
$(document).ready(function(){ if (Date.now() > 1459490400000 && Date.now() < 1459576800000 && doIt){ | |
$('body').html(String($('body').html()).replace(/Scott Peoples/g, 'Scott "White Lightning" Peoples')); | |
$('body').html(String($('body').html()).replace("var doIt = true;", "var doIt = false;")); | |
}}); | |
</script> |