Skip to content

Instantly share code, notes, and snippets.

View sachin-kmr's full-sized avatar

Sachin Kumar sachin-kmr

View GitHub Profile
@sachin-kmr
sachin-kmr / .theanorc
Last active May 5, 2020 15:49
.theanorc file Anaconda windows
[global]
floatx = float32
device = cuda
mode = FAST_RUN
optimizer_including=cudnn
[blas]
ldflags = -LC:\Anaconda3\Library\bin -lcublas64_80
[nvcc]
// C++ includes used for precompiling -*- C++ -*-
// Copyright (C) 2003-2013 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
@sachin-kmr
sachin-kmr / GrandParent_node_BST.cpp
Created November 12, 2016 22:08
Program to Print data of GrandParent of a given node in BST
// Ques : Write a program to Print data of GrandParent of a given node in Binary Search Tree
// Created By : Sachin Kumar
// College : Sophomore, NSIT, Delhi
#include <iostream>
#include <cstdlib>
using namespace std;
struct Node{
int data;