<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Talk on Tyler Collins</title>
    <link>https://www.tk11br.ca/tags/talk/</link>
    <description>Recent content in Talk on Tyler Collins</description>
    <generator>Hugo</generator>
    <language>en</language>
    <copyright>2022-2026 Tyler Collins. Content licensed under CC BY-NC 4.0.</copyright>
    <lastBuildDate>Tue, 22 Mar 2022 00:50:54 -0400</lastBuildDate>
    <atom:link href="https://www.tk11br.ca/tags/talk/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Conquering the Scheduler</title>
      <link>https://www.tk11br.ca/posts/conq_sched/</link>
      <pubDate>Tue, 22 Mar 2022 00:50:54 -0400</pubDate>
      <guid>https://www.tk11br.ca/posts/conq_sched/</guid>
      <description>&lt;p&gt;Coming from a slightly different angle this time, I found that researchers were often isolating themselves to less (strictly fewer!) resources on HPC systems by not investigating what the node feature mixture looked like.&lt;/p&gt;
&lt;p&gt;As such this talk was created to help direct potentially abstract development efforts towards optimizing for which feature sets are most available on a HPC cluster.&lt;/p&gt;
&lt;p&gt;Below is my abstract for the talk as well as the recording:&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Coming from a slightly different angle this time, I found that researchers were often isolating themselves to less (strictly fewer!) resources on HPC systems by not investigating what the node feature mixture looked like.</p>
<p>As such this talk was created to help direct potentially abstract development efforts towards optimizing for which feature sets are most available on a HPC cluster.</p>
<p>Below is my abstract for the talk as well as the recording:</p>
<iframe src="https://www.youtube.com/embed/lPsp97ZGoF8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>&ldquo;Determining the optimal job configuration for a given workload on HPC systems can be a difficult problem. Researchers often have different job needs, different responsiveness requirements, and different scales. This webinar will discuss these differences and how to investigate making the scheduler as responsive as possible. Topics will include whole node scheduling, by core MPI jobs, GLOST, META, and more. This presentation will assume basic knowledge of job submission, and the Linux environment. Practical examples will be discussed and used as introductions to new tools to maximize performance on the general purpose systems. Open questions will be allowed at the end of the seminar.&rdquo;</p>
]]></content:encoded>
    </item>
    <item>
      <title>Pandas Recipes for New Python Users</title>
      <link>https://www.tk11br.ca/posts/pandas1/</link>
      <pubDate>Mon, 21 Mar 2022 19:16:48 -0400</pubDate>
      <guid>https://www.tk11br.ca/posts/pandas1/</guid>
      <description>&lt;p&gt;Eventually I got to the point in data analytics where keeping things in lists, or list of lists was no longer quite cutting it. My processing was slowly starting to grind to a halt, and things were getting way too abstract.&lt;/p&gt;
&lt;p&gt;I decide to call up a friend who had worked in the business longer than me and they suggested &amp;ldquo;pandas&amp;rdquo;. I was vaguely familiar as users/clients had used it in the past. A &amp;ldquo;DataFrame&amp;rdquo; did sound like it would take care of a lot of my problems after reading the documentation casually&amp;hellip;&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Eventually I got to the point in data analytics where keeping things in lists, or list of lists was no longer quite cutting it. My processing was slowly starting to grind to a halt, and things were getting way too abstract.</p>
<p>I decide to call up a friend who had worked in the business longer than me and they suggested &ldquo;pandas&rdquo;. I was vaguely familiar as users/clients had used it in the past. A &ldquo;DataFrame&rdquo; did sound like it would take care of a lot of my problems after reading the documentation casually&hellip;</p>
<p>Fast forward a year and pandas is now core to everything I do in Python. Couldn&rsquo;t live without it anymore, and as such my second talk at SHARCNET was about pandas.</p>
<p>Below is my abstract for the talk as well as the recording:</p>
<iframe src="https://www.youtube.com/embed/bDaWrH38XMA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>&ldquo;Often programmers find themselves in need of an effective way of working with “labeled” data. In the case of Python, Pandas is the most mature and reliable package that interacts effectively with other well known packages such as NumPy, and TensorFlow. As a package, Pandas is said to provide “fast, flexible, and expressive data structures” for what is known as “labeled data”. Features include: easy handling of missing data points, grouping functionality, simple indexing, time series support, numerous conversion functions, and more. This webinar will provide a basic introduction on how to install Pandas, a discussion of its strengths and various use cases, and lastly a demonstration of various common operations (recipes) that occur with labeled data. Experience with beginner Python concepts will be expected, while familiarity with Jupyter notebooks will be helpful. Webinar material and code will be made available on GitHub for future reference.&rdquo;</p>
]]></content:encoded>
    </item>
    <item>
      <title>Cython: A First Look</title>
      <link>https://www.tk11br.ca/posts/cython/</link>
      <pubDate>Sun, 20 Mar 2022 14:40:38 -0400</pubDate>
      <guid>https://www.tk11br.ca/posts/cython/</guid>
      <description>&lt;p&gt;Back when I first got hired at SHARCNET, I used a lot of Python. I mean a lot. What this meant is that I quickly became the lightning rod for all Python related questions (and commentary).&lt;/p&gt;
&lt;p&gt;During a fun Friday chat, a colleague remarked that Python was on average 40x slower than C++. I defended my current language of choice saying it was better than that, surely. To make a long story short, I was wrong. It really is about 40x slower depending on the problem. Determined to prove myself capable, and my language of choice a bit more defensible, I decided to look into ways to make Python faster.&lt;/p&gt;</description>
      <content:encoded><![CDATA[<p>Back when I first got hired at SHARCNET, I used a lot of Python. I mean a lot. What this meant is that I quickly became the lightning rod for all Python related questions (and commentary).</p>
<p>During a fun Friday chat, a colleague remarked that Python was on average 40x slower than C++. I defended my current language of choice saying it was better than that, surely. To make a long story short, I was wrong. It really is about 40x slower depending on the problem. Determined to prove myself capable, and my language of choice a bit more defensible, I decided to look into ways to make Python faster.</p>
<p>I eventually landed on Cython. Turns out the best way to make Python faster was to use as much C++ as possible.</p>
<p>Below is my abstract for the talk as well as the recording:</p>
<iframe src="https://www.youtube.com/embed/y6bKDKFavPA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>&ldquo;Often we write programs in Python for convenience, not for speed. When work becomes elevated to High Performance Computing (HPC) environments, speed once again becomes a concern. Cython is an extension of Python which allows functions to be compiled as C (or C++) and recover the significant performance trade-offs of Python. Cython achieves this by supporting calling C functions, declaring of type information, as well as providing access to C++ STL functionality. Popular packages and libraries that take advantage of Cython include: TensorFlow, OpenCV, NumPy, Pandas, and more. This webinar will cover a basic introduction to Cython, a demo translating vanilla Python into Cython, followed by a short demo of how to run Cython in our own Compute Canada HPC environments. Experience with Python will be expected, while familiarity with C/C++ and Jupyter notebooks will be helpful. Webinar material and code will be made available on GitHub for reference.&rdquo;</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
