當前位置: 首頁>>代碼示例>>Python>>正文


Python ccode.CCodePrinter類代碼示例

本文整理匯總了Python中sympy.printing.ccode.CCodePrinter的典型用法代碼示例。如果您正苦於以下問題:Python CCodePrinter類的具體用法?Python CCodePrinter怎麽用?Python CCodePrinter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了CCodePrinter類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_ccode_Indexed

def test_ccode_Indexed():
    from sympy.tensor import IndexedBase, Idx
    from sympy import symbols
    s, n, m, o = symbols('s n m o', integer=True)
    i, j, k = Idx('i', n), Idx('j', m), Idx('k', o)

    x = IndexedBase('x')[j]
    A = IndexedBase('A')[i, j]
    B = IndexedBase('B')[i, j, k]

    with warnings.catch_warnings():
        warnings.filterwarnings("ignore", category=SymPyDeprecationWarning)
        p = CCodePrinter()
        p._not_c = set()

        assert p._print_Indexed(x) == 'x[j]'
        assert p._print_Indexed(A) == 'A[%s]' % (m*i+j)
        assert p._print_Indexed(B) == 'B[%s]' % (i*o*m+j*o+k)
        assert p._not_c == set()

        A = IndexedBase('A', shape=(5,3))[i, j]
        assert p._print_Indexed(A) == 'A[%s]' % (3*i + j)

        A = IndexedBase('A', shape=(5,3), strides='F')[i, j]
        assert ccode(A) == 'A[%s]' % (i + 5*j)

        A = IndexedBase('A', shape=(29,29), strides=(1, s), offset=o)[i, j]
        assert ccode(A) == 'A[o + s*j + i]'

        Abase = IndexedBase('A', strides=(s, m, n), offset=o)
        assert ccode(Abase[i, j, k]) == 'A[m*j + n*k + o + s*i]'
        assert ccode(Abase[2, 3, k]) == 'A[3*m + n*k + o + 2*s]'
開發者ID:Lenqth,項目名稱:sympy,代碼行數:32,代碼來源:test_ccode.py

示例2: test_ccode_Indexed

def test_ccode_Indexed():
    from sympy.tensor import IndexedBase, Idx
    from sympy import symbols
    n, m, o = symbols('n m o', integer=True)
    i, j, k = Idx('i', n), Idx('j', m), Idx('k', o)
    p = CCodePrinter()
    p._not_c = set()

    x = IndexedBase('x')[j]
    assert p._print_Indexed(x) == 'x[j]'
    A = IndexedBase('A')[i, j]
    assert p._print_Indexed(A) == 'A[%s]' % (m*i+j)
    B = IndexedBase('B')[i, j, k]
    assert p._print_Indexed(B) == 'B[%s]' % (i*o*m+j*o+k)

    assert p._not_c == set()
開發者ID:B-Rich,項目名稱:sympy,代碼行數:16,代碼來源:test_ccode.py

示例3: test_ccode_Indexed

def test_ccode_Indexed():
    from sympy.tensor import IndexedBase, Idx
    from sympy import symbols
    i, j, k, n, m, o = symbols('i j k n m o', integer=True)

    p = CCodePrinter()
    p._not_c = set()

    x = IndexedBase('x')[Idx(j, n)]
    assert p._print_Indexed(x) == 'x[j]'
    A = IndexedBase('A')[Idx(i, m), Idx(j, n)]
    assert p._print_Indexed(A) == 'A[%s]' % str(j + n*i)
    B = IndexedBase('B')[Idx(i, m), Idx(j, n), Idx(k, o)]
    assert p._print_Indexed(B) == 'B[%s]' % str(k + i*n*o + j*o)

    assert p._not_c == set()
開發者ID:Maihj,項目名稱:sympy,代碼行數:16,代碼來源:test_ccode.py

示例4: _print_Mul

 def _print_Mul(self, expr):
     if len(expr.args) == 2: # log2 and log10
         a, b = expr.args
         if is_inv(a) and is_log(a.base) and is_log(b):
             log_base = a.base.args[0]
             if log_base in [2, 10]:
                 return "log%d(%s)" % (log_base, self._print(b.args[0]))
     return CCodePrinter._print_Mul(self, expr)
開發者ID:hunse,項目名稱:codify,代碼行數:8,代碼來源:oclcode.py

示例5: test_ccode_Indexed

def test_ccode_Indexed():
    from sympy.tensor import IndexedBase, Idx
    from sympy import symbols
    n, m, o = symbols('n m o', integer=True)
    i, j, k = Idx('i', n), Idx('j', m), Idx('k', o)

    x = IndexedBase('x')[j]
    A = IndexedBase('A')[i, j]
    B = IndexedBase('B')[i, j, k]

    with warnings.catch_warnings():
        warnings.filterwarnings("ignore", category=SymPyDeprecationWarning)
        p = CCodePrinter()
        p._not_c = set()

        assert p._print_Indexed(x) == 'x[j]'
        assert p._print_Indexed(A) == 'A[%s]' % (m*i+j)
        assert p._print_Indexed(B) == 'B[%s]' % (i*o*m+j*o+k)
        assert p._not_c == set()
開發者ID:rpmuller,項目名稱:sympy,代碼行數:19,代碼來源:test_ccode.py

示例6: _print_Pow

 def _print_Pow(self, expr):
     if expr.base == 2:
         return "exp2(%s)" % self._print(expr.exp)
     if expr.base == 10:
         return "exp10(%s)" % self._print(expr.exp)
     if expr.exp == 0.5 and isinstance(expr.base, Add):
         args = expr.base.args
         if len(args) == 2 and all(map(is_square, args)):
             if self.order != 'none':
                 args = self._as_ordered_terms(expr.base, order=None)
                 # TODO: (above) is it fine to use `order=None`?
             return "hypot(%s, %s)" % (self._print(args[0].args[0]),
                                       self._print(args[1].args[0]))
     if expr.exp == Rational(1, 3):
         return "cbrt(%s)" % self._print(expr.base)
     if expr.exp.is_integer and expr.exp != -1:
         return "pown(%s, %s)" % (
             self._print(expr.base), self._print(expr.exp))
     if expr.exp.is_positive and expr.exp != 0.5:
         return "powr(%s, %s)" % (
             self._print(expr.base), self._print(expr.exp))
     return CCodePrinter._print_Pow(self, expr)
開發者ID:hunse,項目名稱:codify,代碼行數:22,代碼來源:oclcode.py

示例7: _indent_code

 def _indent_code(self, codelines):
     p = CCodePrinter()
     return p.indent_code(codelines)
開發者ID:Eskatrem,項目名稱:sympy,代碼行數:3,代碼來源:codegen.py

示例8: __init__

 def __init__(self, settings={}):
     CCodePrinter.__init__(self, settings)
開發者ID:marcoscimatec,項目名稱:opesci-fd,代碼行數:2,代碼來源:codeprinter.py

示例9: __init__

 def __init__(self, settings={}):
     settings = dict(settings)
     userfuncs = settings.setdefault('user_functions', {})
     for k, v in known_functions.items():
         userfuncs.setdefault(k, v)
     CCodePrinter.__init__(self, settings)
開發者ID:hunse,項目名稱:codify,代碼行數:6,代碼來源:oclcode.py


注:本文中的sympy.printing.ccode.CCodePrinter類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。