Skip to content

Commit

Permalink
[pipeline] rename Transparency and fix dependabot (#4)
Browse files Browse the repository at this point in the history
* enhance transparency.

* rename transparency
  • Loading branch information
LeiWang1999 authored Feb 28, 2024
1 parent 4f6b990 commit e2ef325
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 6 deletions.
35 changes: 29 additions & 6 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Basic dependabot.yml configuration for updating Python dependencies
version: 2

on:
Expand All @@ -9,12 +10,34 @@ on:
- cron: '36 11 * * 5'

updates:
- package-ecosystem: github-actions
directory: /
# Enable version updates for Python packages listed in requirements.txt
- package-ecosystem: "pip"
# Directory where requirements.txt is located
directory: "/"
# Check the Python package index for updates every day (Monday to Friday)
schedule:
interval: daily
interval: "daily"
# Assign labels to the pull request for easier categorization
labels:
- "dependency"
- "python"

- package-ecosystem: npm
directory: /
# Enable version updates for Python projects using poetry
- package-ecosystem: "poetry"
# Directory where pyproject.toml is located
directory: "/"
# Check for updates every week
schedule:
interval: daily
interval: "weekly"
# Specify a time (in UTC) to check for updates, for less disruption
schedule:
interval: "weekly"
time: "04:00"
# Assign labels to the pull request for easier categorization
labels:
- "dependency"
- "python"
# Allow Dependabot to check for pre-release versions
allow:
- dependency-type: "all"
update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]
54 changes: 54 additions & 0 deletions TRANSPARENCY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Transparency FAQ for BitBLAS

## What is BitBLAS?

BitBLAS is a lightweight framework designed for generating high-performance CUDA/HIP code for BLAS (Basic Linear Algebra Subprograms) operators, emphasizing swizzling and layout propagation. It leverages a Domain-Specific Language (DSL), specifically TIR Script, to offer flexibility and efficiency in mathematical computations. BitBLAS aims to provide performance comparable to cuBLAS while introducing more flexibility and efficiency through its unique features.

## What can BitBLAS do?

BitBLAS enhances the performance and flexibility of linear algebra computations with features like:

- Auto Tensorization: Automatically optimizes code for various data types and operators, supporting FP16, INT8, and mixed precision operations.
- Dynamic Symbolic Support: Facilitates kernel generation with dynamic shapes, enabling efficient computation for variable data sizes.
- High-Performance Computing: Offers optimized performance for different data operations, including FP16xFP16, FP16xINT4/2/1, INT8xINT8, and INT8xINT4/2/1, among others.

## What are BitBLAS's intended uses?

BitBLAS is intended for developers and researchers who require high-performance linear algebra computations in their CUDA/HIP-based applications. It is particularly beneficial for:

- Machine Learning and Deep Learning: Accelerating training and inference computations.
- Scientific Computing: Handling large-scale linear algebra operations efficiently.
- High-Performance Computing (HPC): Enhancing performance in computationally intensive applications.

## Data Handling and Privacy

This project is committed to protecting privacy and ensuring a secure environment for all users. It is designed with the following principles in mind:

- No User Data Collection: The project does not collect, process, or store any personal or privacy-sensitive data from users. Users can utilize the project's features without the concern of their data being recorded or misused.

- Transparency: We believe in complete transparency with our community. As such, we clearly state that no user data is collected or processed at any stage of the project's usage.

- User Control and Privacy: Since the project does not involve user data, individuals retain full control over their information. Users can interact with the project knowing their privacy is safeguarded.

## Security Considerations

The security of the project and its users is paramount. Despite not handling user data, we adhere to best practices in software development to ensure the project's integrity and safety:

- Regular Security Audits: The project undergoes regular security reviews and audits to identify and remediate any potential vulnerabilities, ensuring the highest level of security.

- Open Source Security: As an open-source project, our code is available for review, allowing the community to examine and contribute to the project's security.

- Security Incident Response: In the unlikely event of a security issue, we have established procedures for prompt and effective response to investigate and address the concern.

- Community Involvement: We encourage the community to report any security concerns or suggestions for improvement. Our project's success and security are enhanced by active community participation and feedback.

## Compliance and Licensing

As a project initiated and released by Microsoft, we adhere strictly to legal and regulatory standards to ensure our contributions meet the highest compliance criteria. Here are key points regarding our compliance and licensing practices:

- Microsoft's Commitment: This project is part of Microsoft's commitment to supporting and contributing to the open-source community. We ensure that all contributions are compliant with current legal standards and practices.

- MIT License: The project is licensed under the MIT License, one of the most permissive and open licenses available. This license allows for almost unrestricted freedom to use, modify, and distribute the project, providing that the license and copyright notice are included with any substantial portion of the software.

- License Clarity: We have clearly indicated the licensing terms within the project repository to ensure that all users and contributors are informed of their rights and obligations when using or contributing to the project.

0 comments on commit e2ef325

Please sign in to comment.