Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
59df2998
Commit
59df2998
authored
Feb 26, 2018
by
Fenglei Tian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix code style, copyright, and clean unimplement functions
parent
e08ee468
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
55 additions
and
174 deletions
+55
-174
gpu_call_frame.cpp
src/ngraph/runtime/gpu/gpu_call_frame.cpp
+3
-3
gpu_cuda_context_manager.hpp
src/ngraph/runtime/gpu/gpu_cuda_context_manager.hpp
+15
-15
gpu_cuda_function_builder.hpp
src/ngraph/runtime/gpu/gpu_cuda_function_builder.hpp
+6
-12
gpu_cuda_function_pool.hpp
src/ngraph/runtime/gpu/gpu_cuda_function_pool.hpp
+13
-13
gpu_cuda_kernel_emitters.cpp
src/ngraph/runtime/gpu/gpu_cuda_kernel_emitters.cpp
+1
-69
gpu_cuda_kernel_emitters.hpp
src/ngraph/runtime/gpu/gpu_cuda_kernel_emitters.hpp
+15
-62
gpu_util.hpp
src/ngraph/runtime/gpu/gpu_util.hpp
+2
-0
No files found.
src/ngraph/runtime/gpu/gpu_call_frame.cpp
View file @
59df2998
...
...
@@ -34,7 +34,7 @@ runtime::gpu::GPU_CallFrame::GPU_CallFrame(std::shared_ptr<GPU_ExternalFunction>
{
//Create context use driver API and make it current, the runtime call will pickup the context
//http://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#interoperability-between-runtime-and-driver-apis
ngraph
::
runtime
::
gpu
::
Cuda
_context_m
anager
::
Instance
();
ngraph
::
runtime
::
gpu
::
Cuda
ContextM
anager
::
Instance
();
cublasStatus_t
cublasStatus
=
cublasCreate
(
&
m_cublas_handle
);
if
(
cublasStatus
!=
CUBLAS_STATUS_SUCCESS
)
{
...
...
@@ -46,7 +46,7 @@ runtime::gpu::GPU_CallFrame::GPU_CallFrame(std::shared_ptr<GPU_ExternalFunction>
throw
runtime_error
(
"cuDnn create handle failed"
);
}
// Pass scalars as reference on the
Host
// Pass scalars as reference on the
Device
cublasSetPointerMode
(
m_cublas_handle
,
CUBLAS_POINTER_MODE_HOST
);
}
...
...
@@ -60,7 +60,7 @@ void runtime::gpu::GPU_CallFrame::tensor_call(
const
std
::
vector
<
std
::
shared_ptr
<
ngraph
::
runtime
::
TensorView
>>&
input_tvs
,
const
std
::
vector
<
std
::
shared_ptr
<
ngraph
::
runtime
::
TensorView
>>&
output_tvs
)
{
//
Host
tensors
//
Device
tensors
vector
<
void
*>
inputs
;
vector
<
void
*>
outputs
;
...
...
src/ngraph/runtime/gpu/gpu_cuda_context_manager.hpp
View file @
59df2998
...
...
@@ -27,33 +27,33 @@ namespace ngraph
{
namespace
gpu
{
class
Cuda
_context_m
anager
class
Cuda
ContextM
anager
{
public
:
static
Cuda
_context_m
anager
&
Instance
()
static
Cuda
ContextM
anager
&
Instance
()
{
static
Cuda
_context_m
anager
manager
;
static
Cuda
ContextM
anager
manager
;
return
manager
;
}
Cuda
_context_manager
(
Cuda_context_m
anager
const
&
)
=
delete
;
Cuda
_context_manager
(
Cuda_context_m
anager
&&
)
=
delete
;
Cuda
_context_manager
&
operator
=
(
Cuda_context_m
anager
const
&
)
=
delete
;
Cuda
_context_manager
&
operator
=
(
Cuda_context_m
anager
&&
)
=
delete
;
Cuda
ContextManager
(
CudaContextM
anager
const
&
)
=
delete
;
Cuda
ContextManager
(
CudaContextM
anager
&&
)
=
delete
;
Cuda
ContextManager
&
operator
=
(
CudaContextM
anager
const
&
)
=
delete
;
Cuda
ContextManager
&
operator
=
(
CudaContextM
anager
&&
)
=
delete
;
std
::
shared_ptr
<
CUcontext
>
GetContext
()
{
return
context_ptr
;
}
protected
:
Cuda
_context_m
anager
()
Cuda
ContextM
anager
()
{
CUDA_SAFE_CALL
(
cuInit
(
0
));
CUDA_SAFE_CALL
(
cuDeviceGet
(
&
cuD
evice
,
0
));
CUDA_SAFE_CALL
(
cuCtxCreate
(
&
context
,
0
,
cuD
evice
));
context_ptr
=
std
::
make_shared
<
CUcontext
>
(
context
);
CUDA_SAFE_CALL
(
cuDeviceGet
(
&
m_d
evice
,
0
));
CUDA_SAFE_CALL
(
cuCtxCreate
(
&
m_context
,
0
,
m_d
evice
));
m_context_ptr
=
std
::
make_shared
<
CUcontext
>
(
m_
context
);
}
~
Cuda
_context_m
anager
()
{}
CUdevice
cuD
evice
;
CUcontext
context
;
std
::
shared_ptr
<
CUcontext
>
context_ptr
;
~
Cuda
ContextM
anager
()
{}
CUdevice
m_d
evice
;
CUcontext
m_
context
;
std
::
shared_ptr
<
CUcontext
>
m_
context_ptr
;
};
}
}
...
...
src/ngraph/runtime/gpu/gpu_cuda_function_builder.hpp
View file @
59df2998
...
...
@@ -27,7 +27,7 @@ namespace ngraph
{
namespace
gpu
{
class
Cuda
_function_b
uilder
class
Cuda
FunctionB
uilder
{
public
:
static
std
::
shared_ptr
<
CUfunction
>
Get
(
const
std
::
string
&
name
,
...
...
@@ -43,23 +43,17 @@ namespace ngraph
NULL
,
// headers
NULL
));
// includeNames
nvrtcResult
compile
R
esult
=
nvrtcResult
compile
_r
esult
=
nvrtcCompileProgram
(
prog
,
number_of_options
,
options
);
if
(
compile
R
esult
!=
NVRTC_SUCCESS
)
if
(
compile
_r
esult
!=
NVRTC_SUCCESS
)
{
// size_t logSize;
// NVRTC_SAFE_CALL(nvrtcGetProgramLogSize(prog, &logSize));
// char *log = new char[logSize];
// NVRTC_SAFE_CALL(nvrtcGetProgramLog(prog, log));
// std::cout << log << '\n';
// delete[] log;
throw
std
::
runtime_error
(
"compile error:
\n
"
+
kernel
+
"
\n
options"
);
}
size_t
ptx
S
ize
;
NVRTC_SAFE_CALL
(
nvrtcGetPTXSize
(
prog
,
&
ptx
S
ize
));
char
*
ptx
=
new
char
[
ptx
S
ize
];
size_t
ptx
_s
ize
;
NVRTC_SAFE_CALL
(
nvrtcGetPTXSize
(
prog
,
&
ptx
_s
ize
));
char
*
ptx
=
new
char
[
ptx
_s
ize
];
NVRTC_SAFE_CALL
(
nvrtcGetPTX
(
prog
,
ptx
));
// Load the generated PTX and get a handle to the parent kernel.
...
...
src/ngraph/runtime/gpu/gpu_cuda_function_pool.hpp
View file @
59df2998
...
...
@@ -27,29 +27,29 @@ namespace ngraph
{
namespace
gpu
{
class
Cuda
_function_p
ool
class
Cuda
FunctionP
ool
{
public
:
static
Cuda
_function_p
ool
&
Instance
()
static
Cuda
FunctionP
ool
&
Instance
()
{
static
Cuda
_function_p
ool
pool
;
static
Cuda
FunctionP
ool
pool
;
return
pool
;
}
Cuda
_function_pool
(
Cuda_function_p
ool
const
&
)
=
delete
;
Cuda
_function_pool
(
Cuda_function_p
ool
&&
)
=
delete
;
Cuda
_function_pool
&
operator
=
(
Cuda_function_p
ool
const
&
)
=
delete
;
Cuda
_function_pool
&
operator
=
(
Cuda_function_p
ool
&&
)
=
delete
;
Cuda
FunctionPool
(
CudaFunctionP
ool
const
&
)
=
delete
;
Cuda
FunctionPool
(
CudaFunctionP
ool
&&
)
=
delete
;
Cuda
FunctionPool
&
operator
=
(
CudaFunctionP
ool
const
&
)
=
delete
;
Cuda
FunctionPool
&
operator
=
(
CudaFunctionP
ool
&&
)
=
delete
;
void
Set
(
std
::
string
&
name
,
std
::
shared_ptr
<
CUfunction
>
function
)
{
CU
function_map
.
insert
({
name
,
function
});
m_
function_map
.
insert
({
name
,
function
});
}
std
::
shared_ptr
<
CUfunction
>
Get
(
std
::
string
&
name
)
{
auto
it
=
CU
function_map
.
find
(
name
);
if
(
it
!=
CU
function_map
.
end
())
auto
it
=
m_
function_map
.
find
(
name
);
if
(
it
!=
m_
function_map
.
end
())
{
return
(
*
it
).
second
;
}
...
...
@@ -57,9 +57,9 @@ namespace ngraph
}
protected
:
Cuda
_function_p
ool
()
{}
~
Cuda
_function_p
ool
()
{}
std
::
unordered_map
<
std
::
string
,
std
::
shared_ptr
<
CUfunction
>>
CU
function_map
;
Cuda
FunctionP
ool
()
{}
~
Cuda
FunctionP
ool
()
{}
std
::
unordered_map
<
std
::
string
,
std
::
shared_ptr
<
CUfunction
>>
m_
function_map
;
};
}
}
...
...
src/ngraph/runtime/gpu/gpu_cuda_kernel_emitters.cpp
View file @
59df2998
...
...
@@ -43,7 +43,7 @@ namespace ngraph
std
::
string
kernel
;
Cuda_kernel_builder
::
Get_1_element_op
(
name
,
"float"
,
"fabsf"
,
kernel
);
Cuda_function_pool
::
Instance
().
Set
(
name
,
Cuda
_function_b
uilder
::
Get
(
"cuda_"
+
name
,
kernel
,
2
,
opts
));
name
,
Cuda
FunctionB
uilder
::
Get
(
"cuda_"
+
name
,
kernel
,
2
,
opts
));
}
//convert runtime ptr to driver api ptr
...
...
@@ -66,74 +66,6 @@ namespace ngraph
0
));
// arguments
CUDA_SAFE_CALL
(
cuCtxSynchronize
());
// Retrieve and print output.
}
void
emit_broadcast
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
AxisSet
&
broadcast_axes
)
{
}
//
// For the reference kernel this is gpud on, see ngraph/runtime/kernel/concat.hpp.
//
void
emit_concat
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
vector
<
std
::
string
>&
args
,
const
std
::
string
&
out
,
const
std
::
vector
<
Shape
>&
in_shapes
,
const
Shape
&
out_shape
,
size_t
concatenation_axis
)
{
}
void
emit_replace_slice
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
arg1
,
// replacement value
const
std
::
string
&
out
,
const
Shape
&
arg1_shape
,
const
Shape
&
out_shape
,
const
Coordinate
&
lower_bounds
,
const
Coordinate
&
upper_bounds
,
const
Strides
&
strides
)
{
}
void
emit_slice
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
Coordinate
&
lower_bounds
,
const
Coordinate
&
upper_bounds
,
const
Strides
&
strides
)
{
}
void
emit_reshape
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
AxisVector
&
arg0_axis_order
)
{
}
void
emit_sum
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
AxisSet
&
reduction_axes
)
{
}
}
}
}
...
...
src/ngraph/runtime/gpu/gpu_cuda_kernel_emitters.hpp
View file @
59df2998
// ----------------------------------------------------------------------------
// Copyright 2017 Nervana Systems Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// ----------------------------------------------------------------------------
/*******************************************************************************
* Copyright 2017-2018 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
#pragma once
...
...
@@ -28,55 +30,6 @@ namespace ngraph
namespace
kernel
{
void
emit_abs
(
void
*
in
,
void
*
out
,
size_t
count
);
void
emit_broadcast
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
AxisSet
&
broadcast_axes
);
void
emit_concat
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
vector
<
std
::
string
>&
args
,
const
std
::
string
&
out
,
const
std
::
vector
<
Shape
>&
in_shapes
,
const
Shape
&
out_shape
,
const
size_t
concatenation_axis
);
void
emit_replace_slice
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
arg1
,
// replacement value
const
std
::
string
&
out
,
const
Shape
&
arg1_shape
,
const
Shape
&
out_shape
,
const
Coordinate
&
lower_bounds
,
const
Coordinate
&
upper_bounds
,
const
Strides
&
strides
);
void
emit_slice
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
Coordinate
&
lower_bounds
,
const
Coordinate
&
upper_bounds
,
const
Strides
&
strides
);
void
emit_reshape
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
AxisVector
&
arg0_axis_order
);
void
emit_sum
(
codegen
::
CodeWriter
&
writer
,
const
std
::
string
&
element_type
,
const
std
::
string
&
arg0
,
// replacement context
const
std
::
string
&
out
,
const
Shape
&
arg0_shape
,
const
Shape
&
out_shape
,
const
AxisSet
&
reduction_axes
);
}
}
}
...
...
src/ngraph/runtime/gpu/gpu_util.hpp
View file @
59df2998
...
...
@@ -22,6 +22,8 @@
#include <cudnn_v7.h>
#include <nvrtc.h>
//why use "do...while.."
//https://stackoverflow.com/questions/154136/why-use-apparently-meaningless-do-while-and-if-else-statements-in-macros
#define NVRTC_SAFE_CALL(x) \
do \
{ \
...
...
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