Skip to content

Commit

Permalink
cudnn Patch release 1.0.2 (#54)
Browse files Browse the repository at this point in the history
[Header change] Remove the `cudnn_backend.h` dependency, since the correct header is already included in cudnn.h
  • Loading branch information
Anerudhan authored Jan 9, 2024
1 parent f87101b commit 9e17716
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.17)

project(cudnn_frontend VERSION 1.0.1)
project(cudnn_frontend VERSION 1.0.2)

option(CUDNN_FRONTEND_BUILD_SAMPLES "Defines if samples are built or not." ON)
option(CUDNN_FRONTEND_BUILD_UNIT_TESTS "Defines if unittests are built or not." OFF)
Expand Down
3 changes: 1 addition & 2 deletions include/cudnn_frontend.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@
*/

#include <cudnn.h>
#include <cudnn_backend.h>

#include "cudnn_frontend_ConvDesc.h"
#include "cudnn_frontend_Heuristics.h"
Expand All @@ -125,7 +124,7 @@

#define CUDNN_FRONTEND_MAJOR_VERSION 1
#define CUDNN_FRONTEND_MINOR_VERSION 0
#define CUDNN_FRONTEND_PATCH_VERSION 1
#define CUDNN_FRONTEND_PATCH_VERSION 2
#define CUDNN_FRONTEND_VERSION \
((CUDNN_FRONTEND_MAJOR_VERSION * 10000) + (CUDNN_FRONTEND_MINOR_VERSION * 100) + CUDNN_FRONTEND_PATCH_VERSION)

Expand Down
3 changes: 0 additions & 3 deletions samples/legacy_samples/conv_sample.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
#include <tuple>
#include <functional>

#include <cudnn.h>
#include <cudnn_backend.h>

#include <cudnn_frontend.h>

#include "../utils/fp16_dev.h"
Expand Down
2 changes: 1 addition & 1 deletion samples/legacy_samples/norm_samples.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include "norm_samples.h"
#include <cudnn_frontend.h>
#include "cudnn_backend.h"

#include "../utils/error_util.h"
#include "../utils/helpers.h"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
# logic and declaration, and simpler if you include description/version in a file.
setup(
name="cudnn",
version="1.0.0",
version="1.0.2",
author="",
author_email="",
description="cudnn_frontend python package",
Expand Down

0 comments on commit 9e17716

Please sign in to comment.