Changeset b8df02e
- Timestamp:
- 07/22/15 14:34:01 (9 years ago)
- Branches:
- master
- Children:
- e1066fc
- Parents:
- ad7f485
- git-author:
- Hal Finkel <hfinkel@…> (07/22/15 14:34:01)
- git-committer:
- Hal Finkel <hfinkel@…> (07/22/15 14:34:01)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
COPYING
rad7f485 rb8df02e 1 1 ***************************************************************************** 2 Copyright (C) 2014, UChicago Argonne, LLC3 All Rights Reserved4 High-Performance CRC64 Library 5 Developer: Hal Finkel, LCF Division2 Copyright (C) 2014, UChicago Argonne, LLC 3 All Rights Reserved 4 High-Performance CRC64 Library (ANL-SF-14-095) 5 Hal Finkel, Argonne National Laboratory 6 6 7 OPEN SOURCE LICENSE 7 OPEN SOURCE LICENSE 8 9 Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, LLC, 10 the U.S. Government retains certain rights in this software. 8 11 9 12 Redistribution and use in source and binary forms, with or without … … 11 14 12 15 1. Redistributions of source code must retain the above copyright notice, this 13 list of conditions and the following disclaimer. Software changes, 14 modifications, or derivative works, should be noted with comments and the 15 author and organization's name. 16 list of conditions and the following disclaimer. 16 17 17 18 2. Redistributions in binary form must reproduce the above copyright notice, … … 21 22 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor 22 23 the names of its contributors may be used to endorse or promote products 23 derived from this software without specific prior written permission. 24 25 4. The software and the end-user documentation included with the 26 redistribution, if any, must include the following acknowledgment: 27 28 "This product includes software produced by UChicago Argonne, LLC under 29 Contract No. DE-AC02-06CH11357 with the Department of Energy." 30 24 derived from this software without specific prior written permission. 25 31 26 ***************************************************************************** 32 DISCLAIMER27 DISCLAIMER 33 28 34 29 THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. 35 30 36 NEITHER THE UN ITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF31 NEITHER THE UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF 37 32 ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY 38 33 WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY -
include/CRC64.h
rad7f485 rb8df02e 1 // ***************************************************************************** 2 // Copyright (C) 2014, UChicago Argonne, LLC 3 // All Rights Reserved 4 // High-Performance CRC64 Library 5 // Developer: Hal Finkel, LCF Division 6 // 7 // OPEN SOURCE LICENSE 8 // 9 // Redistribution and use in source and binary forms, with or without 10 // modification, are permitted provided that the following conditions are met: 11 // 12 // 1. Redistributions of source code must retain the above copyright notice, this 13 // list of conditions and the following disclaimer. Software changes, 14 // modifications, or derivative works, should be noted with comments and the 15 // author and organization's name. 16 // 17 // 2. Redistributions in binary form must reproduce the above copyright notice, 18 // this list of conditions and the following disclaimer in the documentation 19 // and/or other materials provided with the distribution. 20 // 21 // 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor 22 // the names of its contributors may be used to endorse or promote products 23 // derived from this software without specific prior written permission. 24 // 25 // 4. The software and the end-user documentation included with the 26 // redistribution, if any, must include the following acknowledgment: 27 // 28 // "This product includes software produced by UChicago Argonne, LLC under 29 // Contract No. DE-AC02-06CH11357 with the Department of Energy." 30 // 31 // ***************************************************************************** 32 // DISCLAIMER 33 // 34 // THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. 35 // 36 // NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF 37 // ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY 38 // WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY 39 // FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA, 40 // APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT 41 // INFRINGE PRIVATELY OWNED RIGHTS. 42 // 43 // ***************************************************************************** 1 /* 2 * ***************************************************************************** 3 * Copyright (C) 2014, UChicago Argonne, LLC 4 * All Rights Reserved 5 * High-Performance CRC64 Library (ANL-SF-14-095) 6 * Hal Finkel, Argonne National Laboratory 7 * 8 * OPEN SOURCE LICENSE 9 * 10 * Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, LLC, 11 * the U.S. Government retains certain rights in this software. 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions are met: 15 * 16 * 1. Redistributions of source code must retain the above copyright notice, this 17 * list of conditions and the following disclaimer. 18 * 19 * 2. Redistributions in binary form must reproduce the above copyright notice, 20 * this list of conditions and the following disclaimer in the documentation 21 * and/or other materials provided with the distribution. 22 * 23 * 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor 24 * the names of its contributors may be used to endorse or promote products 25 * derived from this software without specific prior written permission. 26 * 27 * ***************************************************************************** 28 * DISCLAIMER 29 * 30 * THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. 31 * 32 * NEITHER THE UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF 33 * ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY 34 * WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY 35 * FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA, 36 * APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT 37 * INFRINGE PRIVATELY OWNED RIGHTS. 38 * 39 * ***************************************************************************** 40 */ 44 41 45 42 #ifndef CRC64_H -
src/CRC64.c
rad7f485 rb8df02e 1 1 // ***************************************************************************** 2 // Copyright (C) 2014, UChicago Argonne, LLC3 // All Rights Reserved4 // High-Performance CRC64 Library5 // Developer: Hal Finkel, LCF Division2 // Copyright (C) 2014, UChicago Argonne, LLC 3 // All Rights Reserved 4 // High-Performance CRC64 Library (ANL-SF-14-095) 5 // Hal Finkel, Argonne National Laboratory 6 6 // 7 // OPEN SOURCE LICENSE 7 // OPEN SOURCE LICENSE 8 // 9 // Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, LLC, 10 // the U.S. Government retains certain rights in this software. 8 11 // 9 12 // Redistribution and use in source and binary forms, with or without … … 11 14 // 12 15 // 1. Redistributions of source code must retain the above copyright notice, this 13 // list of conditions and the following disclaimer. Software changes, 14 // modifications, or derivative works, should be noted with comments and the 15 // author and organization's name. 16 // list of conditions and the following disclaimer. 16 17 // 17 18 // 2. Redistributions in binary form must reproduce the above copyright notice, … … 21 22 // 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor 22 23 // the names of its contributors may be used to endorse or promote products 23 // derived from this software without specific prior written permission. 24 // 25 // 4. The software and the end-user documentation included with the 26 // redistribution, if any, must include the following acknowledgment: 27 // 28 // "This product includes software produced by UChicago Argonne, LLC under 29 // Contract No. DE-AC02-06CH11357 with the Department of Energy." 30 // 24 // derived from this software without specific prior written permission. 25 // 31 26 // ***************************************************************************** 32 // DISCLAIMER27 // DISCLAIMER 33 28 // 34 29 // THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. 35 30 // 36 // NEITHER THE UN ITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF31 // NEITHER THE UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF 37 32 // ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY 38 33 // WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY -
tests/CRC64Test.cxx
rad7f485 rb8df02e 1 1 // ***************************************************************************** 2 // Copyright (C) 2014, UChicago Argonne, LLC3 // All Rights Reserved4 // High-Performance CRC64 Library5 // Developer: Hal Finkel, LCF Division2 // Copyright (C) 2014, UChicago Argonne, LLC 3 // All Rights Reserved 4 // High-Performance CRC64 Library (ANL-SF-14-095) 5 // Hal Finkel, Argonne National Laboratory 6 6 // 7 // OPEN SOURCE LICENSE 7 // OPEN SOURCE LICENSE 8 // 9 // Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne, LLC, 10 // the U.S. Government retains certain rights in this software. 8 11 // 9 12 // Redistribution and use in source and binary forms, with or without … … 11 14 // 12 15 // 1. Redistributions of source code must retain the above copyright notice, this 13 // list of conditions and the following disclaimer. Software changes, 14 // modifications, or derivative works, should be noted with comments and the 15 // author and organization's name. 16 // list of conditions and the following disclaimer. 16 17 // 17 18 // 2. Redistributions in binary form must reproduce the above copyright notice, … … 21 22 // 3. Neither the names of UChicago Argonne, LLC or the Department of Energy nor 22 23 // the names of its contributors may be used to endorse or promote products 23 // derived from this software without specific prior written permission. 24 // 25 // 4. The software and the end-user documentation included with the 26 // redistribution, if any, must include the following acknowledgment: 27 // 28 // "This product includes software produced by UChicago Argonne, LLC under 29 // Contract No. DE-AC02-06CH11357 with the Department of Energy." 30 // 24 // derived from this software without specific prior written permission. 25 // 31 26 // ***************************************************************************** 32 // DISCLAIMER27 // DISCLAIMER 33 28 // 34 29 // THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF ANY KIND. 35 30 // 36 // NEITHER THE UN ITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF31 // NEITHER THE UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF 37 32 // ENERGY, NOR UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY 38 33 // WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY
Note: See TracChangeset
for help on using the changeset viewer.