Changeset 6db17bd in sasmodels


Ignore:
Timestamp:
Oct 26, 2017 7:41:08 AM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
a5a12ca, c11d09f, bebdb87, c69d6d6
Parents:
55d88b4
git-author:
Paul Kienzle <pkienzle@…> (10/19/17 13:11:08)
git-committer:
Paul Kienzle <pkienzle@…> (10/26/17 07:41:08)
Message:

fix py3 support for opencl kernels

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/generate.py

    r30b60d2 r6db17bd  
    370370    """ 
    371371    # Note: need 0xffffffff&val to force an unsigned 32-bit number 
     372    try: 
     373        source = source.encode('utf8') 
     374    except AttributeError: # bytes has no encode attribute in python 3 
     375        pass 
    372376    return "%08X"%(0xffffffff&crc32(source)) 
    373377 
Note: See TracChangeset for help on using the changeset viewer.