Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
e1283ff5
Commit
e1283ff5
authored
Jul 05, 2018
by
nhynes
Committed by
Tianqi Chen
Jul 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add normal distribution to random engines (#1352)
parent
10b7757a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
86 additions
and
1 deletions
+86
-1
python/tvm/contrib/random.py
+25
-0
src/contrib/random/mt_random_engine.cc
+26
-1
src/contrib/random/random.cc
+11
-0
src/contrib/random/sgx_random_engine.cc
+0
-0
tests/python/contrib/test_random.py
+24
-0
No files found.
python/tvm/contrib/random.py
View file @
e1283ff5
...
...
@@ -55,4 +55,29 @@ def uniform(low, high, size):
return
_api
.
extern
(
size
,
[],
lambda
ins
,
outs
:
_intrin
.
call_packed
(
"tvm.contrib.random.uniform"
,
float
(
low
),
float
(
high
),
outs
[
0
]),
dtype
=
'float32'
)
def
normal
(
loc
,
scale
,
size
):
"""Draw samples from a normal distribution.
Return random samples from a normal distribution.
Parameters
----------
loc : float
loc of the distribution.
scale : float
Standard deviation of the distribution.
size : tuple of ints
Output shape. If the given shape is, e.g., (m, n, k), then m * n * k
samples are drawn.
Returns
------
out : Tensor
A tensor with specified size and dtype
"""
return
_api
.
extern
(
size
,
[],
lambda
ins
,
outs
:
_intrin
.
call_packed
(
"tvm.contrib.random.normal"
,
float
(
loc
),
float
(
scale
),
outs
[
0
]),
dtype
=
'float32'
)
_init_api
(
"tvm.contrib.random"
)
src/contrib/random/mt_random_engine.cc
View file @
e1283ff5
...
...
@@ -73,7 +73,32 @@ class RandomEngine {
return
uniform_dist
(
rnd_engine_
);
});
}
else
{
LOG
(
FATAL
)
<<
"Do not support random.randint on this device yet"
;
LOG
(
FATAL
)
<<
"Do not support random.uniform on this device yet"
;
}
}
/*!
* \brief Fills a tensor with values drawn from Normal(loc, scale**2)
*/
void
SampleNormal
(
DLTensor
*
data
,
float
loc
,
float
scale
)
{
CHECK_GT
(
scale
,
0
)
<<
"standard deviation must be positive"
;
CHECK
(
data
->
strides
==
nullptr
);
DLDataType
dtype
=
data
->
dtype
;
int64_t
size
=
1
;
for
(
int
i
=
0
;
i
<
data
->
ndim
;
++
i
)
{
size
*=
data
->
shape
[
i
];
}
CHECK
(
dtype
.
code
==
kDLFloat
&&
dtype
.
bits
==
32
&&
dtype
.
lanes
==
1
);
if
(
data
->
ctx
.
device_type
==
kDLCPU
)
{
std
::
normal_distribution
<
float
>
normal_dist
(
loc
,
scale
);
std
::
generate_n
(
static_cast
<
float
*>
(
data
->
data
),
size
,
[
&
]
()
{
return
normal_dist
(
rnd_engine_
);
});
}
else
{
LOG
(
FATAL
)
<<
"Do not support random.normal on this device yet"
;
}
}
...
...
src/contrib/random/random.cc
View file @
e1283ff5
...
...
@@ -87,6 +87,7 @@ TVM_REGISTER_GLOBAL("tvm.contrib.random.randint")
})
});
TVM_REGISTER_GLOBAL
(
"tvm.contrib.random.uniform"
)
.
set_body
([](
TVMArgs
args
,
TVMRetValue
*
ret
)
{
RandomThreadLocalEntry
*
entry
=
RandomThreadLocalEntry
::
ThreadLocal
();
...
...
@@ -97,5 +98,15 @@ TVM_REGISTER_GLOBAL("tvm.contrib.random.uniform")
});
TVM_REGISTER_GLOBAL
(
"tvm.contrib.random.normal"
)
.
set_body
([](
TVMArgs
args
,
TVMRetValue
*
ret
)
{
RandomThreadLocalEntry
*
entry
=
RandomThreadLocalEntry
::
ThreadLocal
();
double
loc
=
args
[
0
];
double
scale
=
args
[
1
];
DLTensor
*
out
=
args
[
2
];
entry
->
random_engine
.
SampleNormal
(
out
,
loc
,
scale
);
});
}
// namespace contrib
}
// namespace tvm
src/contrib/random/sgx_random_engine.cc
View file @
e1283ff5
This diff is collapsed.
Click to expand it.
tests/python/contrib/test_random.py
View file @
e1283ff5
...
...
@@ -50,6 +50,30 @@ def test_uniform():
verify
()
def
test_normal
():
m
=
1024
n
=
1024
A
=
random
.
normal
(
3
,
4
,
size
=
(
m
,
n
))
s
=
tvm
.
create_schedule
(
A
.
op
)
def
verify
(
target
=
"llvm"
):
if
not
tvm
.
module
.
enabled
(
target
):
print
(
"skip because
%
s is not enabled..."
%
target
)
return
if
not
tvm
.
get_global_func
(
"tvm.contrib.random.normal"
,
True
):
print
(
"skip because extern function is not avalable"
)
return
ctx
=
tvm
.
cpu
(
0
)
f
=
tvm
.
build
(
s
,
[
A
],
target
)
a
=
tvm
.
nd
.
array
(
np
.
zeros
((
m
,
n
),
dtype
=
A
.
dtype
),
ctx
)
f
(
a
)
na
=
a
.
asnumpy
()
assert
abs
(
np
.
mean
(
na
)
-
3
)
<
1e-2
assert
abs
(
np
.
std
(
na
)
-
4
)
<
1e-2
verify
()
if
__name__
==
"__main__"
:
test_randint
()
test_uniform
()
test_normal
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment