码迷,mamicode.com
首页 >  
搜索关键字:__int64    ( 879个结果
numpy.copy和torch.tensor的cpu/gpu
1.在cpu上 import torch import numpy as np a=torch.tensor(2) b=np.copy(a) # >>> b array(2, dtype=int64) 在cpu上是没有可以随意转换的,但是如果这样: import torch import numpy ...
分类:其他好文   时间:2020-06-14 20:17:19    阅读次数:90
leetcode之整数反转Golang
在使用GO解决这道题之前,需要明白一件事,那就是在GO语言中int的取值范围,在GO语言中,int的取值范围是和机器有关的,在32位机里面,int类型占4个字节相当于Inte32,在64位机里面,int类型占8个字节,相当于int64,所以在本题中参数和返回值给的类型都是int是能够满足32位的要求 ...
分类:其他好文   时间:2020-06-08 19:32:44    阅读次数:69
2、Go语言基础之数据类型
2、Go语言基础之数据类型 Go语言中有丰富的数据类型,除了基本的整型、浮点型、布尔型、字符串外,还有数组、切片、结构体、函数、map、通道(channel)等。 基本数据类型 1.1整型 整型分为以下两个大类: 按长度分为:int8、int16、int32、int64 对应的无符号整型:uint8 ...
分类:编程语言   时间:2020-06-07 14:44:13    阅读次数:68
maze
0x01 拿到题目,放到IDA中静态分析,发现main函数中就是关键代码,如图: __int64 __fastcall main(__int64 a1, char **a2, char **a3) { const char *v3; // rsi signed __int64 v4; // rbx ...
分类:其他好文   时间:2020-06-02 09:27:31    阅读次数:50
buuctf-SimpleRev
下载附件后,是一个没有文件后缀的文件,不过直接拖入IDA试一下,IDA32不行就上IDA64,放入IDA64中,f5反编译得到: 分析一下就知道,重点肯定在Decry()这个函数里,进去后, unsigned __int64 Decry() { char v1; // [rsp+Fh] [rbp-5 ...
分类:其他好文   时间:2020-05-31 01:01:12    阅读次数:74
tf.data.Dataset.shuffle(buffer_size)中buffer_size的理解
tensorflow中的数据集类Dataset有一个shuffle方法,用来打乱数据集中数据顺序,训练时非常常用。其中shuffle方法有一个参数buffer_size,非常令人费解,文档的解释如下: buffer_size: A tf.int64 scalar tf.Tensor, represe ...
分类:其他好文   时间:2020-05-21 17:43:28    阅读次数:145
代码。。Bitwise Copy Semantics
#include <bits/stdc++.h> using namespace std; struct B { B() { this->chr = 0xcedf; } short chr; }; struct A { B s; int i; }; int main() { int64_t i64 ...
分类:其他好文   时间:2020-05-20 15:52:14    阅读次数:56
05. vs2019名称粉碎的简单解析
/* 只写声明,不写实现,然后直接调用,查看错误提示 void __cdecl foo(int)" (?foo@@YAXH@Z) void __cdecl foo(int,int)" (?foo@@YAXHH@Z) void __cdecl foo(char,short,int,__int64)" ...
分类:其他好文   时间:2020-05-08 13:01:12    阅读次数:79
Numpy数组排序
import numpy as np x = np.array([1,4,5,2]) # array([1, 4, 5, 2]) # 返回排序后元素的原下标 np.argsort(x) # array([0, 3, 1, 2], dtype=int64) # 输出最大值的下标 x.argmax( ) ...
分类:编程语言   时间:2020-05-07 19:48:05    阅读次数:72
36D杯 Re WP
测试文件:https://lanzous.com/b07rkpdud 签到 代码分析 int __cdecl main(int argc, const char **argv, const char **envp) { __int64 v3; // rdx __int64 v4; // rcx in ...
分类:其他好文   时间:2020-05-05 16:26:01    阅读次数:181
879条   上一页 1 2 3 4 5 ... 88 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!