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
0000000000401130 <_Z2t2v>: | |
401130: 55 push rbp | |
401131: 48 89 e5 mov rbp,rsp | |
401134: e8 07 00 00 00 call 401140 <.my-name> | |
401139: 5d pop rbp | |
40113a: c3 ret | |
40113b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] | |
0000000000401140 <.my-name>: | |
401140: 55 push rbp |
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/sh | |
IP=192.168.2.200 | |
docker run -d -p $IP:8019:8019 voxhub/silvius-worker:latest /bin/sh -c 'cd /root/silvius-backend ; python kaldigstserver/master_server.py' | |
docker run -d voxhub/silvius-worker /root/worker.sh -u ws://$IP:8019/worker/ws/speech |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 4.14.0-rc2 Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" | |
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" |
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
// compile as: | |
// $ g++ bullet_test.cpp -o bullet_test -I/usr/include/bullet/ -lBulletSoftBody -lBulletDynamics -lBulletCollision -lLinearMath | |
#include <iostream> | |
#include <memory> | |
#include <bullet/btBulletDynamicsCommon.h> | |
int main() { | |
auto broadphase = std::make_shared<btDbvtBroadphase>(); | |
auto collision = std::make_shared<btDefaultCollisionConfiguration>(); |
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
package driver; | |
import ir.frame.Frame; | |
import ir.frame.x86_64.X86_64Frame; | |
import ir.interp.InterpMode; | |
import java.io.File; | |
import java.io.IOException; | |
import java.io.PrintStream; | |
import java.util.Date; |