Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tuning for real time processing(150~250% better performance) #10

Open
wants to merge 5 commits into
base: unstable
Choose a base branch
from

Commits on May 1, 2012

  1. speed up hack. for positive number

     * Math.floor(x) => (x | 0)
    Kanasansoft committed May 1, 2012
    Configuration menu
    Copy the full SHA
    09e771f View commit details
    Browse the repository at this point in the history
  2. speed up hack. for integral number

     * x * 2 => (x << 1);
     * x * 4 => (x << 2);
     * x * 8 => (x << 3);
     * etc.
    Kanasansoft committed May 1, 2012
    Configuration menu
    Copy the full SHA
    d63e286 View commit details
    Browse the repository at this point in the history
  3. speed up hack. for reference property

     * reference property is slow.
    Kanasansoft committed May 1, 2012
    Configuration menu
    Copy the full SHA
    f64f789 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2012

  1. Configuration menu
    Copy the full SHA
    7abb6e6 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2012

  1. Configuration menu
    Copy the full SHA
    11b199b View commit details
    Browse the repository at this point in the history