title: "Renewable Energy and High Performance Computing" date: 2022-08-22T08:42:00+09:00 categories:
- engineering tags:
- renewable
- hpc keywords:
- hpc
title: "Renewable Energy and High Performance Computing" date: 2022-08-22T08:42:00+09:00 categories:
title: "Python 가상 환경 만들기 - venv
"
date: 2022-07-30T08:37:00+09:00
categories:
This document proposes a predict/inference API independent of any specific ML/DL framework and model server. The proposed APIs are able to supprt both easy-to-use and high-performance use cases. By implementing this protocol both inference clients and servers will increase their utility and portability by being able to operate seamlessly on platforms that have standardized around this API. This protocol is endorsed by NVIDIA Triton Inference Server, TensorFlow Serving, and ONNX Runtime Server.
이 문서는 특정 ML/DL 프레임워크나 모델 서버와 독립적인 예측/추론 API 를 제안합니다. 제안하는 API는 사용하기 쉽고 고성능의 사용 예를 모두 지원할 수 있습니다. 이 규약을 구현함으로써, 추론 클라이언트와 서버는 이 API 기반으로 표준화된 어떤 플랫폼에든 이식될 수 있고 활용될
참고자료: http://datastax.github.io/cpp-driver/topics/building/
공식 사이트에서 deb
패키지가 제공되지만, 제가 해 보니 잘 안 되므로 (Ubuntu 16.04 기준) 소스코드를 받아서 빌드해서 설치해 봅시다. Ubuntu Linux에 설치한다고 가정합니다.
/** | |
* Definition for binary tree | |
* struct TreeNode { | |
* int val; | |
* TreeNode *left; | |
* TreeNode *right; | |
* TreeNode(int x) : val(x), left(NULL), right(NULL) {} | |
* }; | |
*/ | |
// Divide-and-conquer | |
public class Find { | |
public static void main(String [] args) { | |
// int [] arr = {1, 1, 3, 3, 4, 5, 5, 7, 7, 8, 8}; | |
int [] arr = {1, 1, 3, 3, 4, 4, 5, 5, 7, 7, 8}; | |
int low = 0; | |
int high = arr.length; |
import java.io.*; | |
import java.util.*; | |
public class StockN | |
{ | |
// Input format: | |
// n | |
// numbers (daily prices) | |
private static void stockBuySell(int price[], int n) | |
{ |
import java.io.*; | |
import java.util.*; | |
public class SmallestSubarrayWithGCD { | |
// Input format: | |
// n | |
// K | |
// numbers | |
import java.io.*; | |
import java.util.*; | |
public class Stack | |
{ | |
private int[] stack; | |
private int N = 0; | |
private int min; | |
public int getMin() throws EmptyStackException |
General guide:
From a computer science professor, but looks general
Another CS prof (in PL)
Also from a computer science dept in UK: