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
9c1195eb
Commit
9c1195eb
authored
Dec 07, 2018
by
Liang ZOU
Committed by
Tianqi Chen
Dec 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[typo] fucn => func (#2240)
parent
4e21982b
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
nnvm/src/pass/infer_shape_type.cc
+1
-1
python/tvm/relay/ty.py
+1
-1
python/tvm/relay/ty.pyi
+1
-1
rust/src/runtime/c_runtime_api.rs
+1
-1
src/api/api_test.cc
+1
-1
src/relay/backend/compile_engine.cc
+1
-1
src/runtime/cuda/cuda_module.cc
+1
-1
src/runtime/metal/metal_module.mm
+1
-1
src/runtime/rocm/rocm_module.cc
+1
-1
src/runtime/vulkan/vulkan_module.cc
+1
-1
No files found.
nnvm/src/pass/infer_shape_type.cc
View file @
9c1195eb
...
...
@@ -215,7 +215,7 @@ NNVM_REGISTER_PASS(InferShape)
.
set_change_graph
(
false
)
.
provide_graph_attr
(
"shape"
);
// inference fu
cn
tion for same type
// inference fu
nc
tion for same type
inline
bool
SameType
(
const
NodeAttrs
&
attrs
,
std
::
vector
<
int
>
*
iattr
,
std
::
vector
<
int
>
*
oattr
)
{
...
...
python/tvm/relay/ty.py
View file @
9c1195eb
...
...
@@ -141,7 +141,7 @@ class FuncType(Type):
This is the type assigned to functions in Relay. They consist of
a list of type parameters which enable the definition of generic
fu
cn
tions, a set of type constraints which we omit for the time
fu
nc
tions, a set of type constraints which we omit for the time
being, a sequence of argument types, and a return type.
We informally write them as:
...
...
python/tvm/relay/ty.pyi
View file @
9c1195eb
...
...
@@ -121,7 +121,7 @@ class FuncType(Type):
This is the type assigned to functions in Relay. They consist of
a list of type parameters which enable the definition of generic
fu
cn
tions, a set of type constraints which we omit for the time
fu
nc
tions, a set of type constraints which we omit for the time
being, a sequence of argument types, and a return type.
We informally write them as:
...
...
rust/src/runtime/c_runtime_api.rs
View file @
9c1195eb
...
...
@@ -750,7 +750,7 @@ extern "C" {
)
->
::
std
::
os
::
raw
::
c_int
;
}
extern
"C"
{
/// \brief Simple static initialization fu
cn
tion.
/// \brief Simple static initialization fu
nc
tion.
/// Run f once and set handle to be not null.
/// This function is mainly used for test purpose.
///
...
...
src/api/api_test.cc
View file @
9c1195eb
...
...
@@ -49,7 +49,7 @@ TVM_REGISTER_API("_context_test")
*
ret
=
ctx
;
});
// internal fu
cn
tion used for debug and testing purposes
// internal fu
nc
tion used for debug and testing purposes
TVM_REGISTER_API
(
"_ndarray_use_count"
)
.
set_body
([](
TVMArgs
args
,
TVMRetValue
*
ret
)
{
runtime
::
NDArray
nd
=
args
[
0
];
...
...
src/relay/backend/compile_engine.cc
View file @
9c1195eb
...
...
@@ -221,7 +221,7 @@ class ScheduleGetter :
class
CompileEngineImpl
:
public
CompileEngineNode
{
public
:
// Lower the fu
cn
tion.
// Lower the fu
nc
tion.
CachedFunc
Lower
(
const
CCacheKey
&
key
)
{
return
LowerInternal
(
key
)
->
cached_func
;
}
...
...
src/runtime/cuda/cuda_module.cc
View file @
9c1195eb
...
...
@@ -141,7 +141,7 @@ class CUDAModuleNode : public runtime::ModuleNode {
std
::
mutex
mutex_
;
};
// a wrapped function class to get packed fu
cn
.
// a wrapped function class to get packed fu
nc
.
class
CUDAWrappedFunc
{
public
:
// initialize the CUDA function.
...
...
src/runtime/metal/metal_module.mm
View file @
9c1195eb
...
...
@@ -163,7 +163,7 @@ class MetalModuleNode final :public runtime::ModuleNode {
std::mutex mutex_;
};
// a wrapped function class to get packed fu
cn
.
// a wrapped function class to get packed fu
nc
.
class MetalWrappedFunc {
public:
// initialize the METAL function.
...
...
src/runtime/rocm/rocm_module.cc
View file @
9c1195eb
...
...
@@ -123,7 +123,7 @@ class ROCMModuleNode : public runtime::ModuleNode {
std
::
mutex
mutex_
;
};
// a wrapped function class to get packed fu
cn
.
// a wrapped function class to get packed fu
nc
.
class
ROCMWrappedFunc
{
public
:
// initialize the ROCM function.
...
...
src/runtime/vulkan/vulkan_module.cc
View file @
9c1195eb
...
...
@@ -223,7 +223,7 @@ class VulkanModuleNode final :public runtime::ModuleNode {
std
::
mutex
mutex_
;
};
// a wrapped function class to get packed fu
cn
.
// a wrapped function class to get packed fu
nc
.
class
VulkanWrappedFunc
{
public
:
// initialize the VULKAN function.
...
...
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