This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*###################################################################### | |
Example 6 : MPI_Isend MPI_Irecv | |
Description: | |
Examples 5 and 6 demonstrate the difference between blocking | |
and non-blocking point-to-point communication. | |
Example 5: MPI_Send/MPI_Recv (blocking) | |
Example 6: MPI_Isend/MPI_Irecv (non-blocking) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
# any name can be used; Velero uses the labels (below) | |
# to identify it rather than the name | |
name: change-storage-class-config | |
# must be in the velero namespace | |
namespace: velero | |
# the below labels should be used verbatim in your | |
# ConfigMap. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# %% | |
from openpyxl import load_workbook | |
import pandas as pd | |
import numpy as np | |
import re | |
from icalendar import Calendar, Event, vText | |
from pytz import timezone | |
from datetime import datetime, timedelta | |
from typing import Tuple |