Careers 2.0 by Stack Overflow
gravatar
profile updated
on Jun 7, 2012

Akanksh Vashisth

Cambridge, United Kingdom

Top 20% Stack Overflow for
Currently Quantitative Developer at Royal Bank of Scotland.

Curious C++/C programmer with a keen interest in Computer Graphics, Numerical Analysis and Artificial Intelligence. A strong understanding of mathematics and physics fundamentals with an analytical outlook towards problems in any domain.

Technologies


Experience show all

Quantitative Developer, Royal Bank of Scotland

June 2010 - Current

  • Development, optimization & maintenance of the Single Analytic Framework.

Software Developer, ArtVPS Ltd.

August 2009 - June 2010

  • Development, optimization & maintenance of a various numerical components in an interactive photorealistic raytracer.
  • Incorporated OpenCL for GPGPU based computing alongwith various kernels for high performance.
  • Developed the HDR Skylight IBL system along with various other features integral to photo-realistic rendering.

Software Developer (Graphics Engine), Artificial Mind and Movement

June 2008 - May 2009

  • Development and maintenance of the graphics engine for AAA titles on Next Gen consoles (Xbox360, PS3)
  • Implementation of various features in the engine (AntiAliasing, Scaleform integration, Stencil Shadows, normal maps etc.) and adding features to profiling tools etc. Development of a streamlined unit-testing system for the Gameframework section of the engine. Initial assessment of SPU management in the engine to handle the Load-in-Place system on PS3.
  • Software design and development of a character customization system & gameplay mechanics for an online MMO.
  • Experience with working in a team under an Agile environment with Scrum including Test driven development.

Engineer – Information Technology, Hero Honda Motors Ltd.

September 2004 - August 2005

  • Generation, analysis and problem solving of reports concerning financial data, employee information and equipment (maintenance, contractual services) along with network and system maintenance and fault handling.
  • Deployment and handling of employee information kiosks for the company’s SAP based system.

Education

Master of Computer Science, Concordia University

2005 - 2008

  • Research in virtual sculpting of Point-Based 3D Models using a haptic interface under Dr. S. P. Mudur.
  • Virtual sculpting of Point-Based 3D Models using a haptic interface.
  • Implementation of various elasticity models from analytical physical mathematics for virtual sculpting.
  • Structural analysis of volume conservation in point-sampled data under stress, along with mathematical modeling of surface reconstruction models.

Stack Exchange show all Last seen yesterday

Open Source show all

YACE

SourceForge

Yet Another Chess Engine - A chess program with bitboards, tranpositions tables, UCI interface etc. The usual mostly, but an experiment bed for genetic algorithms, neural networks etc.


Data Visualizer

SourceForge

A fast command-line OpenGL based scientific data visualization system.


topologicalsort

SourceForge

A memory optimized topological sort library


A Library for Adaptive Axis Aligned Octree Refinement


Tools

Visual-Studio Code::Blocks

Background

Projects and links

Numerical Analysis of Partial Differential Equations
(C++, x86 Assembly, STL, Boost)

  • OOP based PDE analysis system in C++. Support for finite element methods, progressive mesh refinement in 2D.
  • Efficient evaluation of polynomials in monomial form using Horner’s scheme. Support for large sparse matrices.
  • Adaptive nonlinear system solver (Newton-Raphson/Secant method) with numerical Jacobian estimation.
  • Automated error estimation.

Interactive Computer Graphics / Physics Simulation Projects
(OpenGL, C++, C, STL, Boost, TNT, JAMA)

  • Designed & developed a physics engine (particle and rigid body) along with the implementation of various algorithms to simulate game physics (rigid body dynamics (collision detection/response, Newton’s laws), deformable bodies (mass-spring system), conservative systems (gravitational systems) such as Lagrangian dynamics (motion of system of particles) & Hamiltonian systems along with basic implementation of handling Poisson bracket definitions of mechanical systems.
  • Developed a 3D car racing game with collision detection, vehicle dynamics (drag, split-µ generated angular velocity) and multiple driving view options.

Analysis of Nonlinear Dynamical Systems & Chaos
(Matlab, Mathematica, Auto, Fortran)

  • Analysis of stability, bifurcation, continuation and behavior of stationary and periodic solutions in dynamical nonlinear physics. Study of various aspects of 3+1 numerical (General) relativity, time-dependent non-linear Schrödinger equations, stable manifolds in restricted 3-body problem, Lorenz attractor, Duffing equations, and other systems.
  • Implementation of various numerical algorithms: Lax-Wendroff, Kelly’s Pseudo-Arclength (1 & 2 parameter continuation), Rheinboldt's Moving Frame Continuation, Eigenvalue analysis & interpretation for stability study (Hopf bifurcations, stability of manifolds, homoclinic/heteroclinic orbits, isola, cusp etc.)

Virtual Walkthrough with Collision Detection
(OpenGL, C++, GLUT, STL, OpenAL)

  • Complex environment (multiple floors, stairs, elevators, escalators, doors, furniture).
  • Basic interactivity implemented (moving objects, dropping objects down stairs) including collision detection.
  • Shader implementation using GLSL, textures designed in Photoshop, low-poly models imported from Maya.
  • Options for lighting (day/night), rendering (resolution) and ambient music (using OpenAL).
  • Pseudo-Random placement of objects of furniture in the environment for a varied experience.

Implementing Numerical and Geometrical systems/algorithms
(C++, C, OpenGL, STL, Boost, FTensor, TNT)

  • Implementation of algorithms and systems: Bezier curves, NURBS, quaternions, level set extraction, Crank-Nicolson, Runge-Kutta, Bulirsch-Stoer, verlet integration, Gauss-Jordon, Conjugate-Gradient, Newton-Raphson, simplex method in multidimensions, FEM for fluid flow, A*, multilayer perceptron for linear regression, kinetic Monte-Carlo.
  • Differential geometry algorithms for computation of Christoffel symbols of a given metric, covariant derivatives, Riemann curvature tensor and Ricci tensor estimation.

Parallelized Fingerprint Matching System
(C++, MPI, OpenGL)

  • A parallelized system to match a fingerprint bitmap image to a large sample library of finger prints to give the user a numerical value for the accuracy of the match. Implemented on a cluster and tested with up to 12 parallel processors.
  • Implementation in C++, parallelization using MPI and OpenGL used to mark the matching area.

Logical Boolean Satisfiability Tester
(Scheme)

  • A system to check the Satisfiability of a “3-satisfiable” logical expression and maximum Satisfiability.
  • Heuristic implementations: literal frequency check (to detect probabilistic dependence on literal), unit propagation, pure literal elimination (DPLL). Efficient program termination in case of a non-maximum Satisfiability test.

Background

Game Credits

  • W.E.T (published by Bethesda)

Personal Projects

Apart from the academic/professional projects that I have done, I have also under taken a number of personal projects in domains that interest me. The following are a list of projects that I think are relevant:

Chess engine
(C++, x86 Assembly)

  • A 1800-1900 ELO chess engine evaluating approximately 1.5 Million nodes per second.
  • Pre processed move generation via lookup tables, 36 byte board representation with 11 byte move representation.
  • Heuristics: Alpha-Beta pruning, Null move, Transposition tables, Quiescent searching, Move ordering, Iterative deepening.