科学网

 找回密码
  注册

tag 标签: compilation

相关帖子

版块 作者 回复/查看 最后发表

没有相关内容

相关日志

vasp compilation
qlm2001 2012-8-17 15:52
Platform: Dell T7500 workstation; vasp 4.638; Ubuntu 12.04 (also ubuntu 11.04) software for compilation: gcc; gfortran(maybe necessary); ifort MKL (l_fcompxe_intel64_2011.9.293); openmpi-1.60 for parallelization version Procedures as follows 1. install ifort + mkl 2. make libintel64 3. install openmpi 4. make vasp.4.lib 5. make vasp Please reference to attachment file for detailed procedures and Makefiles both for series and parallel version compilaton process series.zip ; parallelization.zip
4276 次阅读|0 个评论
[转载][zhuanzai] VASP 5.2 parallel compilation
qlm2001 2012-7-18 12:42
I successfully installed VASP 5.2.12 on my DELL desktop, 2 Intel Xeon Quad cores, 8 CPUs in total. I spend a lot of time for it, I'd like to share the experience and I wish you to spend less. :) System: Ubuntu 11.04, 64 bit C compiler: gcc (you can also use icc, i installed Intel C++ Composer XE) Fortran compiler: Intel Fortran Composer XE 2011 GotoBLAS2-1.13 ( http://www.tacc.utexas.edu/tacc-projects/gotoblas2/downloads) FFTW 3.2.2 ( http://www.fftw.org/) , you can use newer if available Openmpi 1.4.3 ( http://www.open-mpi.org/) , you can use newer if available Since I use ubuntu I almost always use sudo command like sudo make TARGET=CORE2 USE_THREAD=0 I don't write sudo thing further in this post since it's feature of ubuntu. Parallel version 1) installation of GotoBLAS2 Basically it's suggested to type just make but this does not always work. I advise to build like make TARGET=CORE2 USE_THREAD=0 be careful with TARGET flag, don't use default or at list check, you could have problems because of that. Second one has to specify USE_THREAD=0 to have not threaded version, it's faster when used with OpenMPI. You can also specify the compiler: make CC=gcc (or icc) FC=ifort TARGET=CORE2 USE_THREAD=0 I had problems to compile with icc, so I used gcc + ifort 2) Installation of FFTW To compile read supported readme files. ./configure --prefix=/folder/for/fftw make make install I didn't specify any CC=gcc for ./configure, so I used default for me gcc compiler . 3) Installation of OpenMPI To compile OpenMPI read supported readme files. ./configure CC=icc CXX=icc F77=ifort F90=ifort --prefix=/folder/for/openmpi make all install Again I had problems with icc, so I compiled it with gcc, again I used gcc + ifort 4) VASP lib I used makefile.linux_ifc_P4 file the only change you need, it's FC=ifort 5) Compilation of VASP Again I started from makefile.linux_ifc_P4 file. Things I changed: 1) FFLAGS = -FR -names lowercase -assume byterecl 2) If you use GotoBLAS BLAS= /home/alex/VASP/GotoBLAS2/libgoto2.so or you can use MKL, but MKL is slow for parallel version for my case BLAS=-L/opt/intel/composerxe-2011.4.191/mkl/lib/intel64 -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -liomp5 -lpthread 3) LAPACK LAPACK= ../vasp.5.lib/lapack_double.o 4) fortran compiler/linker for mpi FC=/home/alex/VASP/openmpi/bin/mpif77 5) FFTW for mpi FFT3D = fftmpiw.o fftmpi_map.o fftw3d.o fft3dlib.o /home/alex/VASP/fft/lib/libfftw3.a INCS = -I/home/alex/VASP/fft/include 6) I tried to set -O3 optimization flag in line OFLAG=-O2 -ip -ftz but I didn't find any advantage and I left it as it is. 7) Probably I forgot something but anyway you can see the makefile. Makefile itself: .SUFFIXES: .inc .f .f90 .F #----------------------------------------------------------------------- # Makefile for Intel Fortran compiler for Pentium/Athlon/Opteron # bases systems # we recommend this makefile for both Intel as well as AMD systems # for AMD based systems appropriate BLAS and fftw libraries are # however mandatory (whereas they are optional for Intel platforms) # # The makefile was tested only under Linux on Intel and AMD platforms # the following compiler versions have been tested: # - ifc.7.1 works stable somewhat slow but reliably # - ifc.8.1 fails to compile the code properly # - ifc.9.1 recommended (both for 32 and 64 bit) # - ifc.10.1 partially recommended (both for 32 and 64 bit) # tested build 20080312 Package ID: l_fc_p_10.1.015 # the gamma only mpi version can not be compiles # using ifc.10.1 # # it might be required to change some of library pathes, since # LINUX installation vary a lot # Hence check ***ALL*** options in this makefile very carefully #----------------------------------------------------------------------- # # BLAS must be installed on the machine # there are several options: # 1) very slow but works: # retrieve the lapackage from ftp.netlib.org # and compile the blas routines (BLAS/SRC directory) # please use g77 or f77 for the compilation. When I tried to # use pgf77 or pgf90 for BLAS, VASP hang up when calling # ZHEEV (however this was with lapack 1.1 now I use lapack 2.0) # 2) more desirable: get an optimized BLAS # # the two most reliable packages around are presently: # 2a) Intels own optimised BLAS (PIII, P4, PD, PC2, Itanium) # http://developer.intel.com/software/products/mkl/ # this is really excellent, if you use Intel CPU's # # 2b) probably fastest SSE2 (4 GFlops on P4, 2.53 GHz, 16 GFlops PD, # around 30 GFlops on Quad core) # Kazushige Goto's BLAS # http://www.cs.utexas.edu/users/kgoto/signup_first.html # http://www.tacc.utexas.edu/resources/software/ # #----------------------------------------------------------------------- # all CPP processed fortran files have the extension .f90 SUFFIX=.f90 #----------------------------------------------------------------------- # fortran compiler and linker #----------------------------------------------------------------------- #FC=ifc # fortran linker #FCL=$(FC) #----------------------------------------------------------------------- # whereis CPP ?? (I need CPP, can't use gcc with proper options) # that's the location of gcc for SUSE 5.3 # # CPP_ = /usr/lib/gcc-lib/i486-linux/2.7.2/cpp -P -C # # that's probably the right line for some Red Hat distribution: # # CPP_ = /usr/lib/gcc-lib/i386-redhat-linux/2.7.2.3/cpp -P -C # # SUSE X.X, maybe some Red Hat distributions: CPP_ = ./preprocess $*.F | /usr/bin/cpp -P -C -traditional $*$(SUFFIX) #----------------------------------------------------------------------- # possible options for CPP: # NGXhalf charge density reduced in X direction # wNGXhalf gamma point only reduced in X direction # avoidalloc avoid ALLOCATE if possible # PGF90 work around some for some PGF90 / IFC bugs # CACHE_SIZE 1000 for PII,PIII, 5000 for Athlon, 8000-12000 P4, PD # RPROMU_DGEMV use DGEMV instead of DGEMM in RPRO (depends on used BLAS) # RACCMU_DGEMV use DGEMV instead of DGEMM in RACC (depends on used BLAS) # tbdyn MD package of Tomas Bucko #----------------------------------------------------------------------- CPP = $(CPP_) -DHOST=\"LinuxIFC\" \ -DCACHE_SIZE=12000 -DPGF90 -Davoidalloc -DNGXhalf \ # -DRPROMU_DGEMV -DRACCMU_DGEMV #----------------------------------------------------------------------- # general fortran flags (there must a trailing blank on this line) # byterecl is strictly required for ifc, since otherwise # the WAVECAR file becomes huge #----------------------------------------------------------------------- FFLAGS = -FR -names lowercase -assume byterecl #----------------------------------------------------------------------- # optimization # we have tested whether higher optimisation improves performance # -axK SSE1 optimization, but also generate code executable on all mach. # xK improves performance somewhat on XP, and a is required in order # to run the code on older Athlons as well # -xW SSE2 optimization # -axW SSE2 optimization, but also generate code executable on all mach. # -tpp6 P3 optimization # -tpp7 P4 optimization #----------------------------------------------------------------------- # ifc.9.1, ifc.10.1 recommended OFLAG=-O2 -ip -ftz OFLAG_HIGH = $(OFLAG) OBJ_HIGH = OBJ_NOOPT = DEBUG = -FR -O0 INLINE = $(OFLAG) #----------------------------------------------------------------------- # the following lines specify the position of BLAS and LAPACK # VASP works fastest with the libgoto library # so that's what we recommend #----------------------------------------------------------------------- # mkl.10.0 # set -DRPROMU_DGEMV -DRACCMU_DGEMV in the CPP lines #BLAS=-L/opt/intel/mkl100/lib/em64t -lmkl -lpthread # even faster for VASP Kazushige Goto's BLAS # http://www.cs.utexas.edu/users/kgoto/signup_first.html # parallel goto version requires sometimes -libverbs BLAS= /home/alex/VASP/GotoBLAS2-1.13_bsd/GotoBLAS2/libgoto2.so # LAPACK, simplest use vasp.5.lib/lapack_double LAPACK= ../vasp.5.lib/lapack_double.o # use the mkl Intel lapack #LAPACK= -lmkl_lapack #----------------------------------------------------------------------- LIB = -L../vasp.5.lib -ldmy \ ../vasp.5.lib/linpack_double.o $(LAPACK) \ $(BLAS) # options for linking, nothing is required (usually) LINK = #----------------------------------------------------------------------- # fft libraries: # VASP.5.2 can use fftw.3.1.X ( http://www.fftw.org) # since this version is faster on P4 machines, we recommend to use it #----------------------------------------------------------------------- #FFT3D = fft3dfurth.o fft3dlib.o # alternatively: fftw.3.1.X is slighly faster and should be used if available #FFT3D = fftw3d.o fft3dlib.o /opt/libs/fftw-3.1.2/lib/libfftw3.a #======================================================================= # MPI section, uncomment the following lines until # general rules and compile lines # presently we recommend OPENMPI, since it seems to offer better # performance than lam or mpich # # !!! Please do not send me any queries on how to install MPI, I will # certainly not answer them !!!! #======================================================================= #----------------------------------------------------------------------- # fortran linker for mpi #----------------------------------------------------------------------- FC=/home/alex/VASP/openmpi/bin/mpif77 FCL=$(FC) #----------------------------------------------------------------------- # additional options for CPP in parallel version (see also above): # NGZhalf charge density reduced in Z direction # wNGZhalf gamma point only reduced in Z direction # scaLAPACK use scaLAPACK (usually slower on 100 Mbit Net) # avoidalloc avoid ALLOCATE if possible # PGF90 work around some for some PGF90 / IFC bugs # CACHE_SIZE 1000 for PII,PIII, 5000 for Athlon, 8000-12000 P4, PD # RPROMU_DGEMV use DGEMV instead of DGEMM in RPRO (depends on used BLAS) # RACCMU_DGEMV use DGEMV instead of DGEMM in RACC (depends on used BLAS) # tbdyn MD package of Tomas Bucko #----------------------------------------------------------------------- #----------------------------------------------------------------------- CPP = $(CPP_) -DMPI -DHOST=\"LinuxIFC\" -DIFC \ -DCACHE_SIZE=4000 -DPGF90 -Davoidalloc -DNGZhalf \ -DMPI_BLOCK=8000 # -DRPROMU_DGEMV -DRACCMU_DGEMV #----------------------------------------------------------------------- # location of SCALAPACK # if you do not use SCALAPACK simply leave that section commented out #----------------------------------------------------------------------- #BLACS=$(HOME)/archives/SCALAPACK/BLACS/ #SCA_=$(HOME)/archives/SCALAPACK/SCALAPACK #SCA= $(SCA_)/libscalapack.a \ # $(BLACS)/LIB/blacsF77init_MPI-LINUX-0.a $(BLACS)/LIB/blacs_MPI-LINUX-0.a $(BLACS)/LIB/blacsF77init_MPI-LINUX-0.a SCA= #----------------------------------------------------------------------- # libraries for mpi #----------------------------------------------------------------------- #LIB = -L../vasp.5.lib -ldmy \ # ../vasp.5.lib/linpack_double.o $(LAPACK) \ # $(SCA) $(BLAS) # FFT: fftmpi.o with fft3dlib of Juergen Furthmueller #FFT3D = fftmpi.o fftmpi_map.o fft3dfurth.o fft3dlib.o # alternatively: fftw.3.1.X is slighly faster and should be used if available FFT3D = fftmpiw.o fftmpi_map.o fftw3d.o fft3dlib.o /home/alex/VASP/fft/lib/libfftw3.a INCS = -I/home/alex/VASP/fft/include #----------------------------------------------------------------------- # general rules and compile lines #----------------------------------------------------------------------- BASIC= symmetry.o symlib.o lattlib.o random.o SOURCE= base.o mpi.o smart_allocate.o xml.o \ constant.o jacobi.o main_mpi.o scala.o \ asa.o lattice.o poscar.o ini.o mgrid.o xclib.o vdw_nl.o xclib_grad.o \ radial.o pseudo.o gridq.o ebs.o \ mkpoints.o wave.o wave_mpi.o wave_high.o \ $(BASIC) nonl.o nonlr.o nonl_high.o dfast.o choleski2.o \ mix.o hamil.o xcgrad.o xcspin.o potex1.o potex2.o \ constrmag.o cl_shift.o relativistic.o LDApU.o \ paw_base.o metagga.o egrad.o pawsym.o pawfock.o pawlhf.o rhfatm.o paw.o \ mkpoints_full.o charge.o Lebedev-Laikov.o stockholder.o dipol.o pot.o \ dos.o elf.o tet.o tetweight.o hamil_rot.o \ steep.o chain.o dyna.o sphpro.o us.o core_rel.o \ aedens.o wavpre.o wavpre_noio.o broyden.o \ dynbr.o rmm-diis.o reader.o writer.o tutor.o xml_writer.o \ brent.o stufak.o fileio.o opergrid.o stepver.o \ chgloc.o fast_aug.o fock.o mkpoints_change.o sym_grad.o \ mymath.o internals.o dynconstr.o dimer_heyden.o dvvtrajectory.o vdwforcefield.o \ hamil_high.o nmr.o pead.o mlwf.o subrot.o subrot_scf.o \ force.o pwlhf.o gw_model.o optreal.o davidson.o david_inner.o \ electron.o rot.o electron_all.o shm.o pardens.o paircorrection.o \ optics.o constr_cell_relax.o stm.o finite_diff.o elpol.o \ hamil_lr.o rmm-diis_lr.o subrot_cluster.o subrot_lr.o \ lr_helper.o hamil_lrf.o elinear_response.o ilinear_response.o \ linear_optics.o linear_response.o \ setlocalpp.o wannier.o electron_OEP.o electron_lhf.o twoelectron4o.o \ ratpol.o screened_2e.o wave_cacher.o chi_base.o wpot.o local_field.o \ ump2.o bse_te.o bse.o acfdt.o chi.o sydmat.o dmft.o \ rmm-diis_mlr.o linear_response_NMR.o vasp: $(SOURCE) $(FFT3D) $(INC) main.o rm -f vasp $(FCL) -o vasp main.o $(SOURCE) $(FFT3D) $(LIB) $(LINK) makeparam: $(SOURCE) $(FFT3D) makeparam.o main.F $(INC) $(FCL) -o makeparam $(LINK) makeparam.o $(SOURCE) $(FFT3D) $(LIB) zgemmtest: zgemmtest.o base.o random.o $(INC) $(FCL) -o zgemmtest $(LINK) zgemmtest.o random.o base.o $(LIB) dgemmtest: dgemmtest.o base.o random.o $(INC) $(FCL) -o dgemmtest $(LINK) dgemmtest.o random.o base.o $(LIB) ffttest: base.o smart_allocate.o mpi.o mgrid.o random.o ffttest.o $(FFT3D) $(INC) $(FCL) -o ffttest $(LINK) ffttest.o mpi.o mgrid.o random.o smart_allocate.o base.o $(FFT3D) $(LIB) kpoints: $(SOURCE) $(FFT3D) makekpoints.o main.F $(INC) $(FCL) -o kpoints $(LINK) makekpoints.o $(SOURCE) $(FFT3D) $(LIB) clean: -rm -f *.g *.f90 *.o *.L *.mod ; touch *.F main.o: main$(SUFFIX) $(FC) $(FFLAGS)$(DEBUG) $(INCS) -c main$(SUFFIX) xcgrad.o: xcgrad$(SUFFIX) $(FC) $(FFLAGS) $(INLINE) $(INCS) -c xcgrad$(SUFFIX) xcspin.o: xcspin$(SUFFIX) $(FC) $(FFLAGS) $(INLINE) $(INCS) -c xcspin$(SUFFIX) makeparam.o: makeparam$(SUFFIX) $(FC) $(FFLAGS)$(DEBUG) $(INCS) -c makeparam$(SUFFIX) makeparam$(SUFFIX): makeparam.F main.F # # MIND: I do not have a full dependency list for the include # and MODULES: here are only the minimal basic dependencies # if one strucuture is changed then touch_dep must be called # with the corresponding name of the structure # base.o: base.inc base.F mgrid.o: mgrid.inc mgrid.F constant.o: constant.inc constant.F lattice.o: lattice.inc lattice.F setex.o: setexm.inc setex.F pseudo.o: pseudo.inc pseudo.F poscar.o: poscar.inc poscar.F mkpoints.o: mkpoints.inc mkpoints.F wave.o: wave.F nonl.o: nonl.inc nonl.F nonlr.o: nonlr.inc nonlr.F $(OBJ_HIGH): $(CPP) $(FC) $(FFLAGS) $(OFLAG_HIGH) $(INCS) -c $*$(SUFFIX) $(OBJ_NOOPT): $(CPP) $(FC) $(FFLAGS) $(INCS) -c $*$(SUFFIX) fft3dlib_f77.o: fft3dlib_f77.F $(CPP) $(F77) $(FFLAGS_F77) -c $*$(SUFFIX) .F.o: $(CPP) $(FC) $(FFLAGS) $(OFLAG) $(INCS) -c $*$(SUFFIX) .F$(SUFFIX): $(CPP) $(SUFFIX).o: $(FC) $(FFLAGS) $(OFLAG) $(INCS) -c $*$(SUFFIX) # special rules #----------------------------------------------------------------------- # these special rules are cummulative (that is once failed # in one compiler version, stays in the list forever) # -tpp5|6|7 P, PII-PIII, PIV # -xW use SIMD (does not pay of on PII, since fft3d uses double prec) # all other options do no affect the code performance since -O1 is used fft3dlib.o : fft3dlib.F $(CPP) $(FC) -FR -names lowercase -O2 -c $*$(SUFFIX) fft3dfurth.o : fft3dfurth.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) fftw3d.o : fftw3d.F $(CPP) $(FC) -FR -names lowercase -O1 $(INCS) -c $*$(SUFFIX) wave_high.o : wave_high.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) radial.o : radial.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) symlib.o : symlib.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) symmetry.o : symmetry.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) wave_mpi.o : wave_mpi.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) wave.o : wave.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) dynbr.o : dynbr.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) asa.o : asa.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) broyden.o : broyden.F $(CPP) $(FC) -FR -names lowercase -O2 -c $*$(SUFFIX) us.o : us.F $(CPP) $(FC) -FR -names lowercase -O1 -c $*$(SUFFIX) LDApU.o : LDApU.F $(CPP) $(FC) -FR -names lowercase -O2 -c $*$(SUFFIX)
8691 次阅读|0 个评论
[转载]Introduction a compilation of two TESOL France Journals
carldy 2012-2-26 11:19
http://eca.state.gov/education/engteaching/pubs/BR/5111PRE.htm Introduction It has become increasingly obvious that little in language can be understood without taking into consideration the wider picture of communicative purpose, content, context speaker/writer, and audience. Sentence-based intuitions and analyses wither in the face of empirical studies made possible by concordances using corpora of millions of words. In fact, as Celce-Murcia states in this volume, only a handful of grammatical features can be understood by looking at the sentence alone. Research in the field of psychology, particularly in the field of reading (see Grabe, chapter 1) provides considerable support for the teaching of textual awareness, particularly for expository prose. Teaching text structural awareness has also had positive effects on students' writing (see Johns and Paz, chapter 3 for a review of some relevant research). The title of this volume reflects the assumption that form follows function. Several themes run through the chapters. First, texts, and in fact knowledge itself, are socially constructed. In other words, the meaning of texts is co-constructed by the interaction of reader and text and does not reside in the text alone. The approaches described in this volume all advocate a careful analysis of the text to understand this process more fully. Thus, we lose the somewhat artificial distinction between process and product as we study the text to discover the writer's mental models (see Kramsch, Chapter 4) or biases and presuppositions (see Huckin, Chapter 6). A second theme is that the manner in which language accomplishes the goals of communication affect the overall text from macro-organization to the choice of words. Finally, most chapters assume that texts are so rich and complicated that no single approach can tease out all of the meaning. Learners need to become aware of the richness of interaction among ideology of the writer/reader, genre, overall organization, cohesion, presupposition, and lexical choice to understand not only what is in the text but what has been omitted or presupposed. The first twelve chapters focus on expository text for two reasons. First, research seems to indicate that students experience more difficulties writing and understanding dense hierarchical expository text than narration and in fact seem to benefit more from the teaching of textual awareness of expository than narrative prose (see Grabe, Chapter 1 for a review of the literature). Secondly, although most students have had considerable exposure to reading and writing narratives, they will ultimately need to master expository prose to succeed in the workplace or in the university, even in English classes. Each chapter tries to bridge the gaps between a description of an approach, an analysis of at least one text, and pedagogical applications. Sufficient sources have been provided for those who wish to pursue reading in a particular area, while enough examples of approaches are given so that readers can decide for themselves which method warrants further consideration. Chapter 1 entitled "Discourse Analysis and Reading Instruction" anchors the text in the literature. William Grabe describes many studies which provide empirical support for teaching text structure to students of reading, particularly in expository text. Chapters 2-5 show how an awareness of text structure and strategies is reflected in the quality of student essays. Robert Kaplan's chapter on Contrastive Rhetoric presents a model for the writing process which takes into consideration the impact of author, content, audience, purpose, genre, and context and which shows how students' language and culture shape their writing in English. Claire Kramsch's chapter on Rhetorical Models of Understanding presents student summaries of a narration, while Ann Johns and Danette Paz' chapter on Text Analysis and Pedagogical Summaries deals with summaries of expository texts. Asserting that meaning is a rhetorical and not just a cognitive process, Claire Kramsch presents a model for text analysis and shows how a careful analysis of students' writing can flesh out their respective mental models. Describing Johns and Davies' (1983) topic types, Johns and Paz show what expert and novice summary writers look for when identifying the macro structure of a text. In Chapter 5 John Swales and Christine Feak describe successful and less successful strategies for describing non-verbal information. They recommend going beyond simply transforming information to writing a commentary on non-verbal data. Chapters 6-9 describe the socio-pragmatic effects that certain language, images, orientations, and organization have on the reader. In an introduction to critical discourse analysis, Thomas Huckin provides the reader with a set of strategies to unveil the assumptions and hidden messages in a text. Greg Myers in "Words and Pictures in a Biology Textbook" provides guidelines for reading visuals, showing how the purpose of visuals changes with genre. Following Myers' description of the modality of visuals is Fransoise Salager Meyer's description of hedges in written scientific discourse. Salager Meyer shows how scientists modulate the strength of their claims and provides suggestions for using hedges to join the discourse community of the scientist. Ana Maria Harvey continues Johns and Paz's and Myer's description of the difference between academic texts and popularizations, showing how science reports are really discourses about discourse. An awareness of the demands of the primary and secondary discourse helps classify texts for pedagogical purposes. Chapters 10-12 focus on genre analysis and its applications. Vijay Bhatia highlights some of the major features of genre theory and discusses how a genre-based approach can inform language teaching. Tony Dudley Evans describes some of the insights and dangers of genre analysis in academic papers and provides suggestions for a flexible approach. Finally, Tony Jappy describes a practical approach for using corpora for both research and pedagogy and shows how various language structures are used in different genres. Chapters 13-18 show how functional grammar approaches are useful not only in teaching grammar per se but in teaching other skills such as reading and writing. The first four articles deal with constructions which textbooks often ignore and which cause problems for teachers such as demonstratives, tense and aspect, and there and it-cleft constructions. The last three chapters show how concepts in functional grammar can be used in the reading and writing class. Several of the chapters cover the same territory with slightly different approaches. Marianne Celce-Murcia, William Rotge and Roger Lapaire, and William Vande Kopple all deal with existential there, while Marianne Celce Mureia and Kathleen Bardovi-Harlig deal with tense and aspect. William Vande Kopple, Peter Fries and James Martin all deal with issues of placement of information within clauses and its effect on the message. Fries shows how an understanding of Theme and N-Rheme can help students read and write, while Martin shows how an effective control over theme and manipulation of grammatical structures is crucial for revising compositions and therefore for mature writing. In "Describing and Teaching English Grammar with Reference to Written Discourse" Marianne Celce-Murcia focuses on demonstratives, tense and aspect, existential there sentences, and it-clefts, items which are taken up in later chapters. Celce-Murcia shows that structures are dependent on the context and genre, with some genres allowing more variation with the same grammatical structure than others. Celce-Murcia concludes by advocating more data-based analyses of authentic materials so that reference grammars and teaching materials can begin to supply teachers with guidance as to the use of grammar beyond the sentence level. In her chapter "Tense and Aspect in Context" Kathleen Bardovi-Harlig advocates using authentic texts to teach tense and aspect, showing how genre is related to the use of tense and aspect. Using a complete radio script, Bardovi-Harlig describes how past tense and aspect relate to point of view and foreground or background. Using a descriptive text, Bardovi-Harlig shows how tense can be used as temporal orientation. In a news report she shows how use of tense and aspect is related to given and new information. BardoviHarlig suggests exercises for each genre and structure. In their chapter "Towards a Psycho-Grammatical Description of the English Language," Jean-Remi Lapaire and Wilfrid Rotge describe how mental operations leave traces in the surface grammar. They describe how TH, for example, is used when an item being referred to is online (open file) contrasted to WH, which is used to refresh the reader's memory. Following the French linguist Guillaume, they argue that deep unifying principles, or core values, govern surface realizations of grammatical markers. Rotge and Lapaire advocate teaching grammar in context, beginning with more abstract psycho-grammatical explanations of grammatical features. In his chapter "Using the Concepts of Given Information and New Information in Classes on the English Language," William Vande Kopple bases his analyses on the Functional Sentence Perspective approach. Vande Kopple shows how dividing the sentence into two parts, one with given information and another with new information can explain the use of many structures. Vande Kopple shows how several grammatical structures such as the passive voice, reversals, and fronts help the writer place given before new and make it easier for the reader to identify which is which. Other patterns such as the expletive there, what-cleRs and it-cleRs help call special attention to new information. Vande Kopple suggests exercises for each structure and provides a checklist for students for using given and new strategically. In his chapter on "Theme and New in Written English", Peter Fries introduces the notion of Theme and N-Rheme using a systemic-functional perspective. Theme is associated with the initial constituent in the clause and functions to orient the reader to the message. N-Rheme is the final constituent of the clause and serves as the focus of attention and therefore the locus of new information. Using an advertisement, Fries shows how the Theme and N-rheme relate to author's purpose and to the textual structure. Fries introduces rhetorical structure theory and demonstrates how a careful analysis of linguistic features can help readers recognize the overall text structure and can help them write more effectively. In his chapter entitled "Waves of Abstraction: Organizing Exposition" James Martin shows how the notion of Theme can be used to help students revise texts. In order to package information most effectively, students must learn when to change processes, which are normally encoded as verbs, into nouns; or logical relations, which are normally encoded as conjunctions into verbs. This process, called grammatical metaphor, is necessary if the writer is to manipulate the Theme of the clause effectively and write in a mature manner. Martin uses successive re-writes of a student composition to show how effective use of Theme and grammatical metaphor improves a composition. It is hoped that the chapters in this series provide the reader with a taste of practical uses of various approaches to discourse analysis, and that the works cited can provide a basis for further reading. This volume is a compilation of two TESOL France Journals. I would like to thank TESOL France for its high standards and for its efforts to reach a wider public. I wish to thank the following for their careful reading of the manuscript: Jacqueline Queniart, Gloria Kreisher, Frank Smolinski, and Dolores Parker. Finally, I wish to thank the authors for their suggestions and contributions to this volume. Particularly, I would like to thank Ann Johns and William Grabe, whose patient guidance and generous assistance over the years have made this work possible.
个人分类: 论文撰写技巧 skills for graduate thesis|1878 次阅读|0 个评论
On Methodology of Translatological Dictionary Compiling
sychun 2009-10-20 07:46
On Methodology of Translatological Dictionary Compiling Sun Yingchun (School of Translation and Interpretation, Shandong University at Weihai, Weihai 264209) Abstract: Compiling and studying of translatological dictionary is a newly rising daughter sphere of translation studies. The study of methodology, in the construction of a discipline, is second only to that of ontology. It is attempted in this paper to do some research in methodology of translatological dictionary compiling. First, the concept and features of methodology is considered; second, principles of translatological dictionary compiling methodology are given, including those of background, selectiveness and identity, and finally a brief view concerning translatological dictionary compiling methodology is presented, in which reiterated first is the philosophical basis, and then the main contradiction in translatological dictionary compiling is exposed before the brief view is given. Key words: translatological dictionary; methodology; philosophical basis Introduction Such projects as nature and function of translatological dictionary, object and structure of compilation and study of translatological dictionaries, are all in the domain of ontology. The study of methodology, in the construction of a discipline, is one of the most important issues, second only to that of ontology. The relationship between ontology and methodology can be described as that between essence and application, or orientation and route, with ontology determining orientation and methodology, route. (Pan Wenguo Tan Huimin: 256) The study of methodology is not something that may or may not be necessary to the construction of a discipline but something indispensable indeed. It is attempted in this paper to do some research in methodology of translatological dictionary compiling, taking into consideration such problems asthe concept and features of methodology, principles of translatological dictionary compiling methodology, and finally presenting a brief view concerning translatological dictionary compiling methodology, in which reiterated first is the philosophical basis, and then the main contradiction in translatological dictionary compiling is exposed before the brief view is given. 1Methodology: Concept and Features Methodology, according to A Concise Dictionary of Social Sciences, refers to general method employed to know and transform the world, and also to the theory of the method. It was Hegel who for the first time pointed out the special nature of philosophical methodology and distinguished between philosophical methodology and that of specific sciences. Methodology is determined by world outlook, both being agreeable to each other. A certain world outlook will lead to a certain methodology. Dialectical materialism and historical materialism are not only the solely scientific world outlook but also the solely scientific methodology, demanding people to start from reality and deal with problems objectively, historically and comprehensively, to concretely analyse concrete problems, and, on the basis of subjective and objective conditions, to formulate practical plans with a view to transforming the objective world. (Editorial Board for A Concise Dictionary of Social Sciences :167) This definition tells us that methodology refers both to general method and to theory of the method. The general method research belongs in the domain of pure theoretical studies while the concrete method research in the domain of applied studies. The philosophical methodology can be universally applied, but that of concrete sciences, for instance, translation methodology, is not and it can be applied only to a concrete sphere. The methodology of concrete sciences should also be philosophically deep, agree with philosophical methodology, and can be universally applied in the concrete domain. According to some scholars research on disciplinary construction methodology has three characteristics: First, methodology is abstract and general, i.e. philosophical in nature. It functions, in philosophy, in relation to ontology and covers a system of directive principles intended to attain the goal set by ontology. Difference in ontological understanding will certainly result in different methodologies.Second, when methodology is designed to apply to a specific discipline, it is aimed at solving concrete problems.Thirdly, methodology is macroscopic since it covers directive principles. (Pan Wenguo Tan Huimin:259―260) This knowledge concerning philosophical and disciplinary methodology thus forms a basis on which an investigation may be carried out into translatological dictionary compiling methodology (mentioned below as TDCM, and translatological dictionary as TD). 2 Reflections on T DCM It should be recognized that TDCM is a major project and many scholars many years meticulous study is to be done before any substantial findings are obtained. What I do below is only an initial reflection which is aimed to catch a whale by throwing out a minnow. 2.1 Principles Governing Methodology It is already known that methodology and method are two essentially different concepts although they are closely related. Philosophical, direct and macroscopic, methodology covers principles employed to guide the discipline as a whole while methods are instrumental, microscopic, partial, in that they are concrete ways of study directed at individual problems, or rather, concrete modes or methods used in dealing with specific questions. It should be further known that the probe into and the application of methodology are to be restricted by certain conditions, which we call methodological principles. Referring to the findings produced by Pan Wenguo and Tan Huimin(283 294)in their research on contrastive linguistics, this author will give a brief introduction to these principles and make some revision according to the actual conditions of TD compiling. 2.1.1 Background Principles These refer to factors that function behind the scenes. There are three major factors which govern methodology. ⑴ The determinative role played by ontology Ontological construction is the most important thing to any discipline since there would be no methodology without ontology. Now we are going to investigate into TDCM, but we cannot go a step without doing some research in advance in such ontological respects as the nature and function of translatological dictionaries, and the object, structure, disciplinary location, type classification of TD compilation and study. If there were not any essence, to what we apply methodology? Similarly, if there were not an orientation to go in, why should there be any need for route? Ontology determines orientation, so methodology is said to be restricted by ontology. ⑵ The determinative role played by purpose theory It can be said that the purpose theory is the factor that plays the greatest influence upon methodology. As application and route, methodology is a means that serves the disciplinary purpose. Take contrastive linguistics for example, if the purpose is to give the difference and similarity of two languages concerned so as to be conducive to foreign languages teaching, structuralist ways will naturally be adopted for description; whereas the intention of testifying to the universal grammar that lies behind the surface difference and similarity will, very probably, turn one to transformational-generative linguistics approach for interpretation. Since they are different in their understanding of the TD compiling purpose it is only natural for scholars to turn to different ways, and as a result, different theories will present themselves in methodological exposition. ⑶ The determinative role played by outlook on TD In addition to ontology and purpose theory, what is a more important factor that determines methodology lies in essential viewpoints. The cognition of disciplinary ontology and purpose theory, take contrastive linguistics for example, is in fact determined by outlook on language. Different outlooks on language result in different linguistic theories, and lead to different locations in disciplinary nature, thus restricting the selection in disciplinary research methodology. For example, it is simply because of the utter difference in outlook on language that the structuralists emphasize the difference between languages while the transformational school strives to prove that all languages are in essence cast from one mould. Believing in the weak even strong Sapir-Whorf hypothesis, the main philosophical view of structuralists is relativism and adopts induction; while the transformationalists are philosophically based on the ideology of Ren Descartes, i.e. absolutism, therefore they adopt deduction since they think that, on the highly abstract level, all languages are just the same. What basic view one has toward TD, for example, one may regard it as authority, model, or partly as relative authority, relative model and partly as translatological research reference, selective edition of translatological knowledge will, accordingly, formulate ones outlook on TD. The former is related with absolutism while the latter with relativism. Difference in outlook on TD will certainly lead to different ontologies and purpose theories and compiling approaches. 2.1.2Selective Principles The background principles introduced above are compulsive, so there will be left no room for a researcher to make selection once he joins a school. If we get to know into which kind can ones linguistic outlook be classified, and which school of linguistic theory he believes in, we will almost be able to tell what methodological route he may take in his research; we can go so far as to predict what conclusion he is going to draw as soon as the title of his study meets our eye. The selective principle to be introduced below can be said to have a subjective colouring, the main idea being that in some aspects the researcher has some freedom to make selection. It is embodied as follows. ⑴ Theories adopted in research The first choice is that of basic views and theories. Take linguistics for example, Linguistic outlook and theory represent two levels. Standing on the highest level, linguistic outlook essentially can be divided into no more than three kinds. One may stress the natural properties of language and regard it as the research object of natural sciences; or stressing the social properties of language and regard it as the research object of social sciences; or stressing the humane properties of language and regard it as the research object of humanities. Linguistic theories lie on the second level. The three kinds of linguistic outlook, described with a general structure in view, are not necessarily carried out by all in a thorough way. With the three linguistic outlooks being further divided, arranged and organized again in different ways, miscellaneous linguistic theories will be formed. When the systematicness in natural linguistic properties is emphasized, for example, a structuralist theory may come out; When humans biological nature in natural linguistic properties stands out, biolinguistics will appear; When the character of human exchange becomes a focus, communicative linguistics may be produced; When various aspects of humane property are stressed, there can certainly be cultural linguistics and ethnolinguistics, etc. Attention may also go at once to two or three linguistic properties but different linguistic schools may be formulated because of difference in stress or in ordinal placement. (Pan WenguoTan Huimin: 287) As TD research has just started up it is not possible for there to be miscellaneous schools of thought. There are not many outlooks on TD with obvious marks to be studied. Few TD scholars have done their work so deeply as to touch the philosophical level perhaps because people are not very clear yet that reflections on TD outlook are related with the lifeline of the research area. If reflections on TD are not given proper attention research will not be carried out in depth, thus slowing down the development of the discipline. If one does not have a clear outlook on TD, research on TD ontology and methodology will certainly be conspicuously affected for lack of consciousness and profundity. ⑵ Levels of research Once the TD outlook is made clear, it can be said that the problem of orientation has been properly solved and what follows will only concern the specific route. Choice involved in selection will, of course, still give rise to problems concerning ontology. First of all, the researcher may choose among research levels, i.e. make clear his major research orientation on the three levels of TD theory, applied theory and compiling practicewhich is your major research orientation? Theoretical, applied or compiling studies? The three kinds of research are different in that they adopt different research approaches. The theoretical research, for example, may be done chiefly in the macroscopic perspective, while the applied and compiling studies will generally turn to the microscopic one. People being different in background, interest, and basis, choice should be made by each scholar on the basis of the disciplinary need. ⑶ Object and layers of research We can list six major objects of TD researchtranslatological knowledge, dictionary knowledge, compiler, compiling process, translatological dictionary, and reader. They can also be called six important elements involved in the whole process of dictionary compilation. The six items may be regarded as the first layer of objects of study in which the compiler stands at the core and together with other five form a system. The compiler being the most active element, his subjectivity plays a role in TD compiling much greater than that played by the subjectivity of a translator in the process of translation. The quality of a dictionary, the effect it produces in the market, the influence it causes, all these chiefly depend upon the compiler. The researcher may, of course, choose one or several elements as his research object. They may be further divided, so his choice can be made on the second and third layers. For example, with compiling process, the items for exploration at the second layer may be given as preparation before editing; determination of compiling aim, macroscopic framework, stylistic rules and layout; entry collection; shaping of entry microscopic structure; interpretation writing; proof-reading and manuscript finalizing, etc. One may choose from them and go into in-depth research. Varying with the research objects and layers, methods used in research will undergo corresponding changes. One may also choose from perspectives. Suppose the object remains unchanged, there may be many perspectives to be chosen, such as philosophy, culturology, translatology, lexicography, sociology, psychology, science of communication, synthetic way, etc. With change in perspective, great differences will be discovered in the method, findings and expression of research. ⑷ Plural Complement in Research Approaches The researcher has an even greater room of selection because approach is plural and open-ended. Methodology being restricted, every researcher has to make a selection concerning his disciplinary methodology. As for ordinary approaches, however, one may make a choice out of ones own consideration. For example, among all kinds of approaches, such as analytic and synthetic, macroscopic and microscopic, qualitative and quantitative; sampling, comparative method, elaboration, intertextuality, diachrony, modelling, etc., one has the freedom to determine whether to take or reject on the basis of ones need. Since various approaches are mutually complementary, the image of the whole elephant can be reflected only when observations from all perspectives come together. ⑸ Pattern of Research This may be defined as a collection of methods, in which the researcher may give a full play to his creative power. The pattern of research is in fact the crystallization of experience of the predecessors, contemporary scholars and the researcher himself, significant to the in-depth disciplinary development and to the training and enlightenment of successors. The TD research is thin in this respect because it has come into the world for only a few years, hence those who are determined to plunge into research in this field will certainly get a golden chance to demonstrate their ability. 2.1.3 Identical Principles If background principles demonstrate objective compulsiveness, selective principles are pregnant with subjective autonomy, then identical principles may be called restrictive ones on subjectivity. Practically, they emit a restrictive force on selective principles, i.e. absolute freedom does not exist in the process of selection and the researcher is to operate under restriction to certain extent. ⑴ Theoretical Harmony and Unity The theoretical consistence should be considered first. By this is meant the principle of consistence should be kept when one employs a ready theory. The theoretical consistence in linguistics studies, for example, consists in the requirement that one should not use now structuralist linguistics, now generative linguistics, now functional linguistics, now discourse-analysis theory, etc. It is perhaps not very obvious examining from only one article, but theoretical inconsistence will easily be disclosed when several articles are put together. What is concerned here is philosophical depth. Changeable attitude exposes that the researcher does not operate on the layer of philosophy, not obeying any philosophical principles. However, keeping to consistence in the guiding theory can go shoulder to shoulder harmoniously with the principle of plurality of theories and methods. As it is a newly opened sphere, TD compilation and study will necessarily go through a process of groping and testing in adopting theories and methods. We should be open-minded in TD research and extensively take in nutritious elements from such disciplines as translatology, lexicography, linguistics and other closely related disciplines. Inheritance is to go before development, and creation must be based on criticism. Plurality of theories and methods points not only to the prospect of the whole discipline but is worth the while of every scholar to be engaged in actively trying out various ways. It can be said that extensively taking in various theories and methods in the research on different levels and layers with different objects and targets is practically something needed and necessary for development. It must be remembered, however, that this research characterized by plurality ought to be harmonious fusion of various theories, doctrines and methods instead of piecing together in a haphazard way just like curing the head when the head aches and curing the foot when the foot aches. Going through the researchers mind and notional reorganization and struggling for a new disciplinary target, the quintessence of all kinds forms a new system in the new field of TD compilation and study, with a harmonious internal fusion. This is a harmonious theoretical unity full of creative spirit, which does not reflect consistence in one theory but instead a spirit of incorporating in the research miscellaneous elements. ⑵ Correspondence in Modelling In Routledge Encyclopedia of Translation Studies compiled by Mona Baker there is an entry called Models of translation, which elaborates on modelling in translation studies under such subentries as Models of translation, Theoretical models, Analogue models, Translating as modeling and Models and norms. Translation may be regarded as model of the original. A conscientious study of the theory of modeling shows that the TD is in turn model of translatology, in which there is much to be researched. There are two interpretations for the entry Model in Cihai (Word Ocean) of which the first goes as Model is opposite to prototype in natural dialectics. It is substitute for the object of study. Prototype refers to the object in objective existence whereas model is substitute with characteristics similar to those of the prototype. It is the simplification, abstraction and analogue of system or process. According to the mode in which the prototype is represented, it may be divided into material and notional models. See Modelling method. Modelling is employed in different spheres. In economics, for example, a model is a quantitative kind of abstraction and generalization in that it can describe the main features and rules of change of an object or of a social economic phenomenon. According to nature it can be divided as: substantial model, made imitating the real object, agreeing with corresponding requirements in geometrical shape and dimensions; graphic model, with which the laws of change that happens to objects are reflected by means of abstract concepts, such as a demand curve; mathematical model, which gives an simulation employing signs or mathematical formulas; economical model. (Cihai Editorial Board: 1185) We herein get to know that modelling is a scientific method used to expose the form, character or essence of the prototype (i.e. the imitated object) through studying the model. When applied to TD research, it consists in regarding TD as a model in imitation of its prototype translatology. Of the two major kinds of modelling, material and notional, TD belongs in the notional type, there being a imitating-imitated relationship between TD and translatology, which may be called correspondencealso a kind of identity. TD is in fact an idealized reflection and depiction of translatology in the compilers mind, capable of simulating one or several aspects or even the whole of translation, the chief means of which is entry. A model, in theory, may expand or reduce the object. So far as TD is concerned, the chief function lies in condensation. It seems that every entry results from condensation of much content. With each TD reflecting one or several parts of translatology, the whole system of TDs is to reflect the whole of the discipline of translation. ⑶ Progressiveness of Layers We have said above that the sphere of TD studies may be divided into the three layers of TD theory, applied theory and compiling practice, each again capable of being subdivided. It is thus known that the numerous research projects are in fact not on the same layer but with layeredness and progressiveness. There is a directive relationship progressing from theory to practice the philosophical TD theory directs general theory, which directs applied theory, which in turn directs compiling practice. There is, again, another progressive relationship among different disciplinary properties. Here it is necessary to refer to the situation of linguistic research. Language is possessive of social and humane as well as natural properties. Although we may start from any angle to define language, it is only the humane property angle that is the most inclusive. The humane property of language administrates the social property, and the humane, social properties administrate the natural one; therefore, in the system of linguistics (including contrastive linguistics) the studies starting from natural property is to obey those from social property, and then more willingly obey those from humane property. Take speech sound study for example, phonetics is research from natural property, phonemics from social, and phonology from humane; therefore, phonology may administrate phonemics, and the latter administrate phonetics; conversely, the phonetic findings are to obey phonemics, and the findings of the latter, phonology. (Pan WenguoTan Huimin: 293―294) Is the discipline TD compilation and study endowed with natural property? The answer is to come yet, but it is definitely possessive of social and humane properties. Between studies from the two perspectives there is, too, a administration―obedience relationship. Such an analysis tells us that although a researcher enjoys freedom in selecting among projects, the freedom is restricted by the research system instead of an isolated, absolute freedom without relation with any system. When he makes a choice among projects, a TD research is therefore to be clear of the position of his research in TD compilation and study and then further in the translatological system so as to deal with it in a macroscopic perspective, thus being able to contribute to the disciplinary construction no matter in what perspective and on what subject he does his study. 2.2 An Initial Investigation into TD C M Next comes a brief introduction to this authors view concerning TDCM. 2.2.1 P hilosophical Basis Dialectical materialism and historical materialism are the only scientific world outlook and philosophical methodology and also the philosophical basis of TDCM. The two aspects of any object are both opposed to and unified with each other. Contradiction is just this intrinsic character and its reflection in peoples mind. Every object, phenomenon, process and various internal elements inside them invariably contain two aspects that are mutually different and opposed to each other on the one hand and mutually agreed and related on the other. Contradictions result in the existence of all objects and push them forward. The contradiction between cognition and practice promotes peoples cognition to develop from the lower to the higher level. The movement of contradiction is thus expounded in the book Philosophical Principles : The movement and development of objects all result from the identity and struggle between the two contradictory aspects, from the common function played by identity and struggle. The mutual dependence between the two contradictory aspects is the precondition for the existence and development of objects. The existence of one aspect is preconditioned by that of the other and this forms their mutual dependence which is in turn the precondition for the existence of any definite object and specific contradiction. Every development is that of a specific object which is the unity of two contradictory aspects. Since the identity characterized by mutual dependence of two opposing sides is that in development, one aspects development, too, will have to have the development of the other side for condition. Development is something that happens inside the unity of a contradiction, therefore one aspect cannot develop isolatedly without the other. The two contradictory aspects mutually repel, negate, fight each other, thus pushing an object to develop. The struggle between the opposites will lead to change in force of the two aspects, to alteration in strength comparison between them. When the change develops to a certain stage, a radical change will happen to the object since the original restriction has been surmounted, breaking the old unity and establishing a new one. All contradictory opposites at once rely on and repel each other, there being identity and struggle at the same time. A continuous change happens in this identity-struggle to the strength comparison between the two sides, resulting in their reciprocal transformation. The struggle between opposites is the determinative force that brings about the transformation. (Xiao Ming: 122―123) The whole process of TD compiling is full of contradictions. It is just the identity-struggle relationship that pushes TD compiling forward. Only by fully understanding this can we successfully deal with various relations and make contributions to the disciplinary construction. 2.2.2 Translatological Dictionary Compiling Methodology TD compiling is a complicated system formulated by many contradictions. In order to probe into TDCM we are first to get clear, in this system of contradictions, what is the basic contradiction before we are in a position to put forward a methodology with macroscopic directive significance in relation with this basic contradiction and other contradictions concerned. 2.2.2 .1Basic Contradiction in TD compiling The task of DT compiling lies in serving the research and construction of translatology. The actual situation of translatology is that the discipline has been established for a very short time, with some respects not being very mature; that in the theoretical world many schools vie with one another and theorists see questions in quite different ways, with new terms cropping up in large numbers; that in the world of practice and service people and companies do their work in all sorts of ways without any definite regulations; and that in the world of education the basis is newly laid and various enthusiastic institutions are like the Eight Immortals crossing the ocean, each displaying his or her own magic power, there people enjoying excessive freedom but without a comprehensive plan. The contradiction between the actual situation of translatology and the obligation of TD constitutes the basic contradiction of TD compiling. The actual situation of translatology is featured as above and the main characteristic may be generalized as many schools vying and a hundred of theorists contending with one another. TD shoulders various obligations, with the most important one being clarifying the translatological situation and normalizing translation studies. The actual situation of translatology will continue over a long period of time and the TD obligations, too, are not to be shirked; therefore, characterized by academic contending and discourse normalization, each trying to break a new way and plan the future, the two opposites are at once identical and disagreeable. Each aspect of the basic contradiction depends upon the other for the precondition of existence, co-existing in the unity of TD compiling. The two opposites are at once struggle and link up with each other, thus pushing the discipline forward. 2.2.2 .2A Brief Introduction to TDCM Descriptiveness vs. normativeness, comprehensiveness vs. singularity, theoreticalness vs. practicalness, practicality vs.academicalness, and openness vs. closedness, all these concrete contradictions in compilatory principles represent the embodiment of the basic TD contradiction in TD compiling, with the most representative one being descriptiveness and normativeness which is put in the first place of the five pairs. The reason for saying so lies in the fact that this contradictory pair of compilatory principles concentratedly demonstrate the compilers effort to solve the basic TD contradiction, one that pays attention to both aspects. Just as Mao Zedong says: In the development of a complicated object there are many contradictions, of which there must be one that is the principal contradiction whose being and development determines or influences the being and development of other contradictions.(Mao Zedong: 295) Descriptiveness versus normativeness is just such a determinative contradiction, which plays a leading role in the process of TD compiling while others are in a secondary and obedient place. When the main contradiction is adequately found and correctly dealt with all problems will be readily solved. Thousands of scholars and practitioners do not know this method, so they are not able to find ways of solving contradictions, as if they fell into a sea of smoke without finding the centre.(Ibid.:297; My translation) With a view to clarifying the translatological situation and normalizing translation studies, a TD compiler, shouldering the arduous task and faced with the situation of many schools vying and a hundred of theorists contending with one another, has to deliberate whether to take objectivereality into consideration and try to reflect the reality of translation studies in a descriptive spirit, and clarify the disciplinary situation and normalize translation studies to a properly smaller extent, or to give full play to ones subjective initiative in changing the present situation and do his best to accomplish his TD obligation by strictly employing the normative standards. This is in fact a problem of choosing among general methods, which is both macroscopic and directed at specific problems and concerns the overall situation. Here is the dividing linethose who choose the former may be called descriptive school and the latter, normative school. On the knowledge of contradiction Mao Zedong continues: When dealing with various contradictions, be it principal or secondary, can we treat the two contradictory aspects in an equal stand? Again, no. In whatever contradiction the development of both sides is not balanced. Sometimes they seem to be in equilibrium, but this is only something temporary and relative, more often than not what prevails being imbalance. Of the two conflicting aspects, one must be principal and the other secondary. The principal aspect is just the aforesaid one that plays a leading role in the contradiction. The character of an object is chiefly determined by the principal aspect of contradiction which is in the dominant position. (Ibid.) The descriptive school, therefore, when probing into the contradiction, in fact decides on the conclusion that descriptiveness must be put in the dominant position and normativeness, secondary. The normative school holds an opinion that is just the opposite. When there is not any conflict, i.e. the TD obligation may be smoothly carried out, there will be no difference and argument at all; once there occurs something, however, for example, with regard to the entry translation, peoples views cannot be unified since they look at it in quite different perspectives, then argument will happen as if stormy waves suddenly came. The former thinks now that a commonly accepted definition cannot be found and the near future will not see the problem to be solved, then we may as well respect the fact by introducing in the entry interpretation several typical ones to describe the actual state of research, treating translation as a topic; whereas the latter deems the TD obligation must be firmly carried out and it is just because there is not a common cognition that TD is required to give an authoritative definition in order that peoples understanding may be unified, here translation being processed as a specialized term. Belonging in the descriptive school, this author, in the foreseeable future, also in his rest of life, will adhere to the descriptive spirit unswervingly, but he is not dogged-minded. The descriptive principle is designed to apply to the whole as the principal one, but in some cases the decision may be otherwise. Take the study of translation strategy for example, in the Lu Xun period (1920s―1930s) it was yanghua(洋化, foreignization) that was put in opposition to guihua(归化, domestication),with the academic discussion characterized by strong political colouring seething with enthusiasm; however, when the year 1995 saw the raising of the pair of translation strategies foreignizing and domesticating by the American Lawrence Venuti on the basis of Schleiermachers theory, there occurs the problem of terminological translation. Domesticating is doubtlessly to be put as 归化(guihua), but how to translate foreignizing? A vast majority of people agree to putting it into the neutral term 异化(yihua) instead of the obviously pejorative 洋化(yanghua). It is not necessary in such a case to stick stubbornly to the descriptive spirit and give two corresponding words 异化 and 洋化. The normative principle should be followed here so that only 异化 be given as the corresponding word, but mention is to be made in the interpretation of 洋化 and the contending on translation strategies in the period of Lu Xun since historical fact has to be respected. Otherwise, the young masters and doctors may think this issue has not been taken into consideration of Chinese scholars. Again, take the example of the entry translation, if someday ten years later in the future, together with the heightening of cognitive and expressive ability, there occurs a definition upon which the majority of people agreed, then this author will cordially approve of giving in the new TD only the definition that has become the principal aspect of the contradiction. This is a dialectical way of looking at things, utterly different from a metaphysical one that is ossified, coagulative, and stagnant. The TDCM, in a nutshell, is based on dialectical materialism and historical philosophy, viewing problems cropping up in the process of compiling in a dialectic, historic perspective, and advocating that the law of the unity of opposites should be followed and when problems occur the main contradiction and the principal aspect should be found out first. While abiding by principles we should also pay attention to pliability and give consideration to all aspects, i.e. play well on the keyboard that is formed by many pairs of contradictory principles. Conlusion With many layers of character, TDCM is philosophical, on the one hand, intended to provide directive principles for the targets stipulated by TD ontology, thus endowed, too, with macroscopicness; on the other, it is instrumental, necessitated to aim the arrow at the target by taking the specific features of the TD domain into consideration, so one often has to incorporate some concrete methods when dwelling upon methodology. Before exploring into TDCM, we emphatically expounded the methodological principles, i.e. background, selective and identical principles, with each being done in three or five aspects. And then we made a research on TDCM after having concisely presented the philosophical basis, pointing out that t he contradiction between the actual situation of translatology and the obligation of TD constitutes the basic contradiction of TD compiling. The kernel subject of TDCM study, TD compiling principles include many pairs of contradictions, which fully shows the complicatedness of TD compiling. To this authors mind, TD compiling principles include at least five pairs of contradictions: descriptiveness vs. normativeness, comprehensiveness vs. singularity, theoreticalness vs. practicalness, practicality vs. academicalness, and openness vs. closedness, which clearly form an assemblage of contradictions. Faced with so many contradictory principles, we may be at a loss which way to follow if no proper way is found. It is just here that great significance is to be discovered in Mao Zedongs philosophical exposition of main contradiction and principal aspect of contradiction. It is exposed in this essay that of the five pairs of contradictions descriptiveness vs. normativeness is the main one in which descriptiveness is the principal aspect of contradiction and plays a leading role. A new subject, TDCM is a virgin land on which there are few ploughing and weeding. Theoretical crystallization in this field, although extremely difficult, can be realized through observation and deliberation. A temporary corresponding neural connection will be formed on the cerebral cortex after the cognitive subject is stimulated by an object, for instance a TD entry, and perception occurs. If one often reads entries of the same kind in different dictionaries, similar neural connection will appear repeatedly and stay on the cerebral cortex. The neural connection will not disappear immediately when the stimulant, i.e. the entry, stopped producing any effect on the brain, but will instead leave a trace which is called representation which forms the basis for us to know an object. A concept, i.e. knowledge of an objects essence and internal connections, will be formulated through processing and generalizationabstract thinking. Rational cognition may be carried out, when concepts accumulate, through judging and inferring. Concepts form judgment, and judgments form inference, resulting in logical conclusion which is theory. This author expects that there will be many scholars plunging themselves into the discussion of TD theories, including exploration into the methodology of TDCM so that the domain of TD compiling and study will be continually opened up and finally shaped. Bibliography: Baker, Mona. ed. Routledge Encyclopedia of Translation Studies .London and New York: Routledge, 1998. Cihai Editorial Board. Cihai (Word Ocean; 1999 edition in reduced format ). Shanghai: Shanghai Dictionary Press, 2002. Editorial Board for A Concise Dictionary of Social Sciences. A Concise Dictionary of Social Sciences . Shanghai: Shanghai Dictionary Publishing House, 1982. Mao Zedong. Selected Works of Mao Zedong (One-volume Edition) . Beijing: Peoples Publishing House, 1964. Pan WenguoTan Huimin. Contrastive Linguistics: Historical and Philosophical Survey . Shanghai: Shanghai Education Press, Shanghai Century Publication Company Ltd., 2006. Xiao Ming. Philosophical Principles . Beijing: Economical Science Press, 1997. Introduction to the author : Sun Yingchun, male, b.1949, Dean of School of Translation and Interpretation, Shandong University at Weihai, Peoples Republic of China; Professor and Doctoral Supervisor of Shandong University; Member of Chinese Translators Association; Head of Translatological Committee, Shandong Association of Foreign Linguistics; Research fields: translation theory; translatological dictionary compilation and research P.C.: 264209 School of Translation and Interpretation of Shandong University at Weihai Tel.: 860631-5683461(o); 5688646(h); 13863030317 Fax: 0631-5683461 Email : sychun@sdu.edu.cn 作者简介 : 孙迎春,男, 1949 年生,山东大学威海分校翻译学院教授、院长 / 中国译协理事 ; 山东省国外语言学学会翻译学专业委员会会长 ; 研究方向 : 翻译理论 ; 译学词典编纂与研究 邮寄地址: 264209 山东大学威海分校翻译学院 电话 : 0631-5683461; 5688646; 13863030317 传真 : 0631-5683461 电子邮箱 : sychun@sdu.edu.cn (This is written on part of On Translatological Dictionaries, Shanhai Foreign LanguagesEducation Press, 2009) ( Notice: Some of the English articles included under the title Translation Dictionary Sturies are not complete since the tables or figures cannot be shown or the number of article symbols is limited. If you want the complete form, just contact sychun1949@sina.com . Or, if you have any article on the same subject which you want to publish here, contact the same address also.)
个人分类: Translatological Dictionary Studies|6164 次阅读|0 个评论
编译kernel
bozheng 2008-11-23 23:34
最近把内核(2.6.27.5)编译了几次,touchpad的问题还是没解决。不过精简了内核的很多设置,重要的地方列在这里: * Processor family 选Core 2/newer Xeon,其余不选; * 显卡选Graphics support-Support for frame buffer devices-Intel 830M/.../965GM support-DDC/I2C for Intel framebuffer support; * 声卡选Intel HD Audio-Build Realtek HK-audio codec support and Enable generic HK-audio codec parser; * 摄像头选I2C support-Autoselect pertinent helper modules,Multimedia devices-Video capture adapters-V4L USB devices- USB Logitech Quickcam Messenger; * 网卡选Network device support-PHY Device support and infrastructure-Drivers for Realtek PHYs and Network device support-Ethernet(1000 Mbit)-Realtek 8169 gigabit ethernet support; * 无线网卡选Network device support-Wireless LAN(IEEE802.11)-Realtek 8187 and 8187B USB support; * MM/SD 读卡器选MMC/SD card support-MMC block device driver(包括其子选项) and Secure Digital Host Controller Interface support(不包括其子选项); * touchpad选 Devices drivers-Input device support-Mice-PS/2 mouse-Synaptics PS/2 mouse protocol extension and ALPS PS/2 mouse protocol extension * USB 支援选USB support-USB device filesystem and USB selective suspend/resume and wakeup and EHCI HCD (USB2.0) support(包括其子选项) and UHCI HCD (most Intel and VIA support and The shared table of common (or usual) storage devices and USB Mass Storage support (包括Datafab Compact Flash Reader support,ISD-200 USB/ATA Bridge support,USBAT/USBAT02-based storage support); * 外置USB DVD自动挂载选Device Drivers-SCSI device support-SCSI disk support and SCSI CDROM support (not Enable vendor-specific extensions); 另外不选这两项: Serial ATA and Parallel ATA drivers- Generic ATA support and ATA/ATAPI/MFM/RLL support- generic/default IDE chipset support; * 选 SMT scheduler support; High memory supoort (4GB); Math emulation; * 选 Cryptographic API-Null algorithms and Twofish cipher algorithm and Twofish cipher algorithm(i586) * 以下是不选的:Amateur Radio support; IrDA subsystem support; Bluetooth subsystem support; RF switch subsystem support; Plan 9 Resource Sharing Support (9P2000); Watchdog Timer support; Virtualization; Misc devices; 所有I2C Hardware Bus support的子选项; 所有Miscellaneous filesystems的子选项;Device drivers-Memory Techonology Device (MTD) support and Parallel port support and IEEE1394 support and Misc devices and Fusion MPT devices support and I2O device support and Macintosh device drivers and ISDN support and Telephony support and GPIO support and Dallas's 1-wire support and USB Serial Converter support and USB DSL modem support and USB Gadget support and Sony MemoryStick card support and Accessibility support and InfiniBand support and Userspace I/O drivers; Graphics support-Support for frame buffer devices-VGA 16-color graphics support and Userspace VESA VGA graphics support. * 其他的一些杂记: AFS (Andrew File System) is a distributed networked file system which uses a set of trusted servers to present a homogeneous, location-transparent file name space to all the client workstations. 我不需要 AFS support. 这个笔记本没有ATM network card, 所以不需要 ATM support. 编译大约要40分钟。 加载新编译的内核后,在刚开始启动的时候会有警告: modprobe FATAL: could not load /lib/modules/2.6.27.5-bz.custom/modules.deb, no such file or directory 但是modules.deb明明在/lib/modules/2.6.27.5-bz/. 等几秒钟后系统能够正常继续,登录后也没发现有不正常的地方,当然touchpad还是不工作.
个人分类: linux|4464 次阅读|0 个评论

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-6-4 14:23

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部