Skip to content
Snippets Groups Projects
Select Git revision
  • b34a52691cda02daa898094fb2f3f4de1fc54510
  • master default
  • amd-support
  • cmake-build
4 results

Config.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Config.h 336 B
    #if !defined TCC_CONFIG_H
    #define TCC_CONFIG_H
    
    #if defined __ARM_ARCH
    #define UNIFIED_MEMORY // assume this is a Jetson Xavier
    #endif
    
    #undef MEASURE_POWER
    
    #define POL_X			0
    #define POL_Y			1
    #define NR_POLARIZATIONS	2
    
    #if !defined NR_TIMES
    #define NR_TIMES		768
    #endif
    
    #define REAL			0
    #define IMAG			1
    #define COMPLEX			2
    
    #endif