-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (52 loc) · 2.52 KB
/
index.html
File metadata and controls
64 lines (52 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs -->
<meta charset="utf-8">
<title>The DyND Library</title>
<meta name="description" content="">
<meta name="author" content="DyND Developers">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS -->
<link rel="stylesheet" href="./theme/css/normalize.css">
<link rel="stylesheet" href="./theme/css/skeleton.css">
<link rel="stylesheet" href="./theme/css/custom.css">
<!-- Favicon -->
<link rel="icon" type="image/png" href="./images/favicon.png">
</head>
<body>
<div class="container">
<div class="logo300px">
<a href="."><img src="./images/dynd_logo_300px.png"></img></a>
</div>
<nav class="nav">
<ul>
<li><a href=".">Home</a></li>
<li><a href="./introduction">Introduction</a></li>
<li><a href="https://github.com/libdynd/libdynd">C++ Core</a></li>
<li><a href="https://github.com/libdynd/dynd-python">Python Bindings</a></li>
<li><a href="./gsoc">Google Summer of Code</a></li>
</ul>
</nav>
</div>
<!-- Primary Page Layout -->
<div class="container">
<section id="content">
<header align="center"><h1>The DyND Library</h1></header>
<div class="eleven columns">
<p>DyND is a C++ library for dynamic, multidimensional arrays. It is inspired by NumPy, the Python array programming library at the core of the scientific Python stack, but tries to address a number of obstacles encountered by some of its users. Examples of this are support for variable-sized string, ragged array types, and convenient usage from C++. The library is in a preview development state, and can be thought of as a sandbox where features are being tried and tweaked to gain experience with them.</p>
<p>The core DyND developer team consists of
<a href="https://github.com/mwiebe">Mark Wiebe</a>,
<a href="https://github.com/izaid">Irwin Zaid</a>, and <a href="https://github.com/insertinterestingnamehere">Ian Henriksen</a>.
Much of the funding that made this project possible came through <a href="http://continuum.io/">Continuum Analytics</a> and
<a href="https://www.fbo.gov/index?s=opportunity&mode=form&id=7a77846c73ffc5cb22f9295ffe6cdd55&tab=core&_cview=0">DARPA-BAA-12-38</a>,
part of <a href="http://opencatalog.darpa.mil/XDATA.html">XDATA</a>.</p>
</div>
</section>
</div>
<!-- End Document -->
</body>
</html>