SWSL: Software Synthesis for Network Lookup

Total Page:16

File Type:pdf, Size:1020Kb

SWSL: Software Synthesis for Network Lookup SWSL: SoftWare Synthesis for Network Lookup Sung Jin Kimy Lorenzo De Carliy Karthikeyan Sankaralingamy Cristian Estanz yUniversity of Wisconsin-Madison zBroadcom Corporation {sung,lorenzo,karu}@cs.wisc.edu [email protected] ABSTRACT strength, stemming from the architectural flexibility of general pur- Data structure lookups are among the most expensive operations on pose processors, is the ease with which algorithms can be devel- routers’ critical path in terms of latency and power. Therefore, effi- oped, debugged and tuned. However, the lack of specialization cient lookup engines are crucial. Several approaches have been pro- of general-purpose CPU negatively impacts performance. More- posed, based on either custom ASICs, general-purpose processors, over, they exhibit high power consumption, which is the cost of or specialized engines. ASICs enable high performance but have generality [5]. The second approach is hardwired logic design long design cycle and scarce flexibility, while general-purpose pro- (e.g. [18, 23, 26, 35, 6, 11, 34, 37]). Implementing lookup al- cessors present the opposite trade-off. Specialized programmable gorithms with fixed-function hardware maximize performance and engines achieve some of the benefits of both approaches, but are minimize power consumption. This however comes at the price of a still hard to program and limited either in terms of flexibility or design cycle that is long and error-prone, and no flexibility. A third performance. option consists of specialized designs implementing programmable In this paper we investigate a different design point. Our solu- hardware accelerators. Such accelerators provide hardware imple- tion, SWSL (SoftWare Synthesis for network Lookup) generates mentation of functionality typically used by lookup algorithms, ar- hardware logic directly from lookup applications written in C++. ranged in a configurable architecture, to achieve the best of both Therefore, it retains a simple programming model yet leads to sig- worlds. Examples include [4, 21, 25, 27]. However, as providing nificant performance and power gains. Moreover, compiled appli- both complete programmability and performance is an impractical cation can be deployed on either FPGA or ASIC, enabling a fur- goal, these specialized approaches still have to prioritize one or the ther trade-off between flexibility and performance. While most other. Moreover, recent industry trends [3, 33] show that the main high-level synthesis compilers focus on loop acceleration, SWSL cost factors in hardware development are design/verification, fol- generates entire lookup chains performing aggressive pipelining to lowed by developing the companion software. Specialized engines achieve high throughput. still incur design/verification costs, although amortized. The re- Initial results are promising: compared with a previously pro- lated software is tied to the architecture; transitioning to a different posed solution, SWSL gives 2 − 4× lower latency and 3 − 4× approach requires rewriting it, wasting a considerable investment. reduced chip area with reasonable power consumption. In this paper, we propose a new approach to design lookup en- gines called SoftWare Synthesis for network Lookups (SWSL – pronounced Swizzle). SWSL consists in a lookup programming Categories and Subject Descriptors API and a specialized compiler middle layer that generates efficient B.4.1 [Data Communication Devices]: Processors; C.1 lookup hardware logic from software. This approach improves [Computer Systems Organization]: Processor Architectures the hardware/software development cycle in various ways. First, SWSL is architecture-neutral: lookup implementations are valid C++ that can be compiled for a conventional CPU, or fed to the Keywords SWSL compiler and deployed as FPGA or ASIC. The former ap- Network processing, Lookups, High-level synthesis, Dynamically- proach retains flexibility, while the latter prioritizes performance. specialized datapath Thus SWSL eases code reuse. Moreover, software and hardware designs are consolidated: design and verification can be done effi- ciently in an high-level programming language, reducing the need 1. INTRODUCTION for a separate hardware verification cycle. Power and area usage As the demands of Internet services increase, throughput require- are limited, as the specialized logic implements exactly the func- ments for high performance routers and switches become more and tionality needed by the application. more stringent. At their core, these devices consist of multiple line The SWSL programming model (§ 3) is dataflow-based and cards, each including host processors, memory modules and lookup naturally exploits pipelining opportunities present in lookup algo- engines. Data structure lookups are are among the most expen- rithms [10]. While most high-level synthesis compilers focus on sive operations on the packets’ critical path in terms of latency and latency improvement through loop acceleration, SWSL leverages power; therefore, developing high performance lookup engines is the simple, acyclic nature of lookup programs to generate hard- crucial to enable router performance to scale. ware logic for the entire lookup algorithm, performing aggressive Three main research approaches have been investigated in com- pipelining to achieve high throughput. One of the main challenges puter architecture and VLSI design communities. The first con- in synthesizing hardware from software is that the latter is inher- sist on SRAM-based algorithmic solution, deployed as software ently sequential, offering limited opportunities for concurrent ex- on general purpose processors [12] or even GPUs [20, 31]. Their Approach Performance Efficiency Design Debug/ ecution. SWSL employs optimizations to uncover concurrency at time verif. basic-block level (§ 4), and increases parallelism through the use of Software Low Low Good Good Customized variable lines. Each line maintain an independent copy of the ex- High High Poor Poor Design ecution state of the program, allowing multiple executions to pro- HLS High High Good Good ceed independently in parallel. We compare SWSL with two previously proposed lookup accel- Table 1: Comparison of design methodologies erators, PLUG and LEAP, with promising initial results. SWSL their heterogeneity – hardware lookup implementations do have sustains the same throughput as these designs, with reasonable common aspects [10]. Proposals such as [4, 21, 25, 27] provide power consumption. Moreover, in comparison with PLUG SWSL hardware implementation of functions typically used by lookup al- gives 2 − 4× lower latency and 3 − 4× reduced chip area. gorithms, arranged in a configurable architecture. Similar to GPUs, This paper is organized as follows. Section 2 provide back- these engines use specialized programming models; lookup imple- ground and presents related work both in the fields of lookup ac- mentations are hardware-specific and cannot be used on different celerators and high-level synthesis. Section 3 presents overview of platforms. SWSL, and Section 4 discuss the functioning of SWSL in details. We argue that the specialized engine approach does not avoid Section 5 presents quantitative measurement and evaluation based two significant pitfalls of ASICs: hardware verification costs on five network lookup algorithms, and Section 6 concludes the and excessive software specialization. According to [3, 33], the paper. main cost factors in hardware development are design/verification (∼40%) followed by developing the companion software (∼30%). 2. BACKGROUND AND MOTIVATION Designing lookup engines still requires complex and costly hard- ware/software codesign; lookup algorithms developed for a plat- 2.1 Network Lookups form are highly specialized and cannot be ported to different archi- The fundamental task of switches and routers is to determine tectures. next-hop information (e.g. an outgoing port number) given some In this paper, we propose to tackle these limitations by gener- packet data, such as a layer 2 or 3 addresses, or the connection ating lookup hardware directly from high-level software via high- 5-tuple. Making a forwarding decision usually requires searching level synthesis (HLS). No hardware/software codesign is required; large data structures of various kinds, depending on the specific verification can be done fully in software using standard debug- algorithm. For example, layer-3 routers use the IP destination ad- ging tools. Therefore, hardware testing can be minimized to sanity- dress to search IP routing tables; OpenFlow [30] and its predeces- checking the final design. Moreover the approach is architecture- sor Ethane [9] look up per-flow rules in tables index by layer-3/4 neutral and reusable, as our API does not assume any special hard- headers. The operation must be performed at line speed and for ware capability. The hardware generated by HLS can be deployed each incoming packet. As lookups are among the most expensive both on FPGAs and ASICs, enabling a trade-off between flexibil- operations on packets’ critical path in terms of latency and power, ity and performance. For example an ASIC deployment – sacri- there is a large body of research, both in academia and industry, on ficing flexibility – may be acceptable if the target application is implementing them efficiently. well-standardized, e.g. layer-2 or -3 forwarding. Software approaches are problematic because network lookups In the next section we discuss the advantage of software- and are known to suffer from poor locality: multi-Gigabit
Recommended publications
  • Genotypic Characterization and Molecular Evolution of Avian Reovirus in Poultry Flocks from Brazil
    Avian Pathology ISSN: (Print) (Online) Journal homepage: https://www.tandfonline.com/loi/cavp20 Genotypic characterization and molecular evolution of avian reovirus in poultry flocks from Brazil Silvia De Carli , Jonas Michel Wolf , Tiago Gräf , Fernanda K. M. Lehmann , André S. K. Fonseca , Cláudio W. Canal , Vagner R. Lunge & Nilo Ikuta To cite this article: Silvia De Carli , Jonas Michel Wolf , Tiago Gräf , Fernanda K. M. Lehmann , André S. K. Fonseca , Cláudio W. Canal , Vagner R. Lunge & Nilo Ikuta (2020): Genotypic characterization and molecular evolution of avian reovirus in poultry flocks from Brazil, Avian Pathology, DOI: 10.1080/03079457.2020.1804528 To link to this article: https://doi.org/10.1080/03079457.2020.1804528 View supplementary material Published online: 14 Sep 2020. Submit your article to this journal Article views: 83 View related articles View Crossmark data Full Terms & Conditions of access and use can be found at https://www.tandfonline.com/action/journalInformation?journalCode=cavp20 AVIAN PATHOLOGY https://doi.org/10.1080/03079457.2020.1804528 ORIGINAL ARTICLE Genotypic characterization and molecular evolution of avian reovirus in poultry flocks from Brazil Silvia De Carlia,c, Jonas Michel Wolfa, Tiago Gräfb, Fernanda K. M. Lehmanna, André S. K. Fonsecad, Cláudio W. Canalc, Vagner R. Lungea,d and Nilo Ikutaa,d aLaboratório de Diagnóstico Molecular, Programa de Pós-Graduação em Biologia Celular e Molecular aplicada à Saúde, Universidade Luterana do Brasil (ULBRA), Canoas, Brazil; bInstituto Gonçalo Moniz, Fundação Oswaldo Cruz, Salvador, Brazil; cLaboratório de Virologia, Faculdade de Veterinária, Universidade Federal do Rio Grande do Sul, Porto Alegre, Brazil; dSimbios Biotecnologia, Cachoeirinha, Brazil ABSTRACT ARTICLE HISTORY Avian reovirus (ARV) is one of the main causes of infectious arthritis/tenosynovitis and Received 2 April 2020 malabsorption syndrome (MAS) in poultry.
    [Show full text]
  • Development and Validation of an Index Based on EAT-Lancet Recommendations: the Planetary Health Diet Index
    nutrients Article Development and Validation of an Index Based on EAT-Lancet Recommendations: The Planetary Health Diet Index Leandro Teixeira Cacau 1 , Eduardo De Carli 1 , Aline Martins de Carvalho 1 , Paulo Andrade Lotufo 2, Luis A. Moreno 3,4,5 , Isabela Martins Bensenor 2 and Dirce Maria Marchioni 1,* 1 Department of Nutrition, School of Public Health, University of São Paulo, São Paulo 01246-904, Brazil; [email protected] (L.T.C.); [email protected] (E.D.C.); [email protected] (A.M.d.C.) 2 Clinical and Epidemiological Research Center, University Hospital, University of São Paulo, São Paulo 05508-000, Brazil; [email protected] (P.A.L.); [email protected] (I.M.B.) 3 Growth, Exercise, Nutrition and Development (GENUD) Research Group, Faculty of Health Sciences, University of Zaragoza, 50009 Zaragoza, Spain; [email protected] 4 Instituto Agroalimentario de Aragón (IA2), Instituto de Investigación Sanitaria de Aragón, 50013 Zaragoza, Spain 5 Centro de Investigación Biomédica en Red de Fisiopatología de la Obesidad y Nutrición (CIBEROBN), Instituto de Salud Carlos III, 28040 Madrid, Spain * Correspondence: [email protected] Abstract: The EAT-Lancet Commission has proposed a planetary health diet. We propose the development of the Planetary Health Diet Index (PHDI) based on this proposed reference diet. We used baseline dietary data obtained through a 114-item FFQ from 14,779 participants of the Longitudinal Study on Adult Health, a multicenter cohort study conducted in Brazil. The PHDI has 16 components and a score from 0 to 150 points. Validation and reliability analyses were performed, Citation: Cacau, L.T.; De Carli, E.; de including principal component analyses, association with selected nutrients, differences in means Carvalho, A.M.; Lotufo, P.A.; Moreno, between groups (for example, smokers vs.
    [Show full text]
  • 2015 Do Not Enter Social Security Numbers on This Form As It May Be Made Public
    l efile GRAPHIC p rint - DO NOT PROCESS I As Filed Data - I DLN: 93491320033496 OMB No 1545-0052 Form 990-PF Return of Private Foundation or Section 4947 ( a)(1) Trust Treated as Private Foundation Department of the Treasury 2015 Do not enter social security numbers on this form as it may be made public. Internal Revenue Service ► ► Information about Form 990- PF and its instructions is at www. irs.gov /form99Opf . • • ' For calendar year 2015 , or tax year beginning 01-01 - 2015 , and ending 12-31-2015 Name of foundation A Employer identification number JANET DE CARLI CHARITABLE FOUNDATION 94-3288290 Number and street (or P 0 box number if mail is not delivered to street address) BTelephone number (see instructions) 11640 REGNART CANYON DR (408) 872-3156 City or town, state or province , country, and ZIP or foreign postal code C If exemption application is pending, check here ► CUPERTINO, CA 95014 P G Check all that apply [Initial return [Initial return former public charity of a D 1. Foreign organizations , check here ► F-Final return F-A mended return P F-Address change F-Name change 2. Foreign organizations meeting the 85% test, check here and attach computation ► E If private foundation status was terminated H Check type of organization [Section 501( c)(3) exempt private foundation under section 507(b)(1)(A), check here ► F Section 4947( a)(1) nonexempt charitable trust Other taxable private foundation IFair market value of all assets at end JAccounting method [Cash F-Accrual F If the foundation is in a 60-month termination of year (from Pa,t II, col (c), [Other( specify) under section 507(b)(1)(B), check here ► F Ime 248 , 060 (Part I, column (d) must be on cash basis Disbursements Analysis of Revenue and Expenses Revenue and (The total of amounts n columns (b), (c), and (d) may not Net investment Adjusted net for charitable expensese per necessarily equal the amounts n column (a) (see (b) ncome (c) ncome purposes (a) books Instructions) ) (d) (cash basis only) 1 Contributions, gifts, grants, etc , received (attach schedule) .
    [Show full text]
  • UTFPR • Sisu 2018 2 • RESULTADO DA 2A CHAMADA
    UTFPR • SiSU 2018_2 • RESULTADO DA 2a CHAMADA Os candidatos na situação MATRICULADO ETAPA 1 devem confirmar a matrícula nos dias 02 e 03 de agosto de 2018, conforme item 9.2 do Edital 18/2018. Os candidatos na situação AGUARDANDO VAGA devem acompanhar a convocação da 3a Chamada (Chamada Nominal), dia 08/agosto/2018. CÂMPUS MEDIANEIRA Classificação Curso Categoria Nome do Candidato Situação (na cota) ALIMENTOS Cat. 3S PAMELA DA SILVA SOARES 2 MATRICULADO ETAPA 1 ALIMENTOS Cat. 3S GLADIS ADRIANA DE MORAIS 3 MATRICULADO ETAPA 1 ALIMENTOS Cat. 3S ISRAEL AZAF GONCALVES 4 MATRICULADO ETAPA 1 ALIMENTOS Cat. 3S CAROLAINE CRISTINA DE SANTANA 5 MATRICULADO ETAPA 1 ALIMENTOS Não cotista MARIVANI TERESINHA FRIZZO 2 MATRICULADO ETAPA 1 ALIMENTOS Não cotista CARLA ELOISA CANOVA 3 MATRICULADO ETAPA 1 ALIMENTOS Não cotista MARCOS ANTONIO FABRIN 4 MATRICULADO ETAPA 1 ALIMENTOS Não cotista LUANA SUZIN 5 MATRICULADO ETAPA 1 ALIMENTOS Não cotista TAIANARA SOARES SOUZA SANTOS 6 MATRICULADO ETAPA 1 ALIMENTOS Não cotista ARGEL AMARAL ROGLIN 8 MATRICULADO ETAPA 1 ALIMENTOS Não cotista LUCAS DE LIMA FACHIN 10 MATRICULADO ETAPA 1 ALIMENTOS Não cotista JEFERSON JUNIOR CAMARGO FERREIRA 11 MATRICULADO ETAPA 1 ALIMENTOS Não cotista ERICA LAIANA VASCONCELOS DE CARLI 12 MATRICULADO ETAPA 1 ALIMENTOS Não cotista KETLEN RAUANE CORDEIRO 13 MATRICULADO ETAPA 1 ALIMENTOS Não cotista CRISTIANE APARECIDA GONCALVES DA SILVA 14 MATRICULADO ETAPA 1 ALIMENTOS Não cotista PAULO LEMES CORDEIRO 15 MATRICULADO ETAPA 1 CIÊNCIA DA COMPUTAÇÃO Cat. 1S LUCAS BEDIN MARCHI 1 MATRICULADO ETAPA 1 CIÊNCIA DA COMPUTAÇÃO Cat. 3S EMANUELLY CARNIEL PERES 1 MATRICULADO ETAPA 1 CIÊNCIA DA COMPUTAÇÃO Cat.
    [Show full text]
  • Architecture Canada
    Journal of the Society for the Study of Journal de la Société pour l’étude de l’ ARCHITECTUREARCHITECTURE inin // auau CANADACANADA CONTENTS / TABLE DES MATIÈRES Luc Noppen 2 Présentation / Presentation ANALYSES / ANALYSES Rhodri Windsor-Liscombe 3 Grounding the New Perspectives of Modernism: Canadian Airports and the Reconfiguration of the Cultural and Political Territory Marie-Josée Therrien 15 Diplomatic Malaise. The Challenge of Representing Canada Abroad Olga Zorzi Pugliese 25 The Mosaic Workers of the Angelo Principe Thomas Foster Memorial ESSAIS / ESSAYS André Casault 31 House Hunting Or I’Ve Never “Lived” In My House Yves Deschamps 43 L’art nécessaire. Quelques réflexions sur le Nigog et l’architecture RAPPORT / REPORT Jean Bélisle 49 Le moulin Légaré, Saint-Eustache (Québec) COMPTE RENDU / REVIEW Isabelle Caron 63 Martin Dubois Architecture contemporaine à Québec : 112 repères urbains Volume / Tome 28, numéros / numbers 1, 2 (2003) PRÉSENTATION PRESENTATION e numéro d’Architecture Canada présente une sélection de his issue of Architecture Canada presents a selection of articles textes soumis à la rédaction par des membres bien connus submitted to the Editorial Committee by some of SEAC’s Cde la SÉAC, mais aussi par de nouvelles figures qui proviennent Tregular members, but also by some new figures coming from d’horizons variés et qui se joignent à la Société, intéressés par la various spheres who adhere to the Society, interested by the jour- revue dans son nouveau format. nal’s new format. Cette fois, dans la section analyses, Rhodri Windsor-Liscom- This time, in the analyses section, Rhodri Windsor-Liscombe be examine le rôle qu’a joué l’architecture des aéroports cana- examines the role played by postwar Canadian airports’ archi- diens de l’après-guerre dans la construction d’une identité tecture in the development of a modern Canadian identity.
    [Show full text]
  • Medianeira UTFPR • Sisu 2018 2 • Vagas Disponíveis Após a 1ª Chamada
    UTFPR • SiSU 2018_2 - Convocação da 2ª chamada Os requerimentos de matrícula serão realizados no DERAC do câmpus, dias 12, 13 e 16/07/2018, conforme indicado em http://portal.utfpr.edu.br/cursos/estudenautfpr/sisu/anexos/cronograma-2a-chamada-sisu-2018-2.pdf/ Medianeira UTFPR • SiSU 2018_2 • Vagas disponíveis após a 1ª chamada Vagas Não Vagas por Categoria de Cotas Vagas Curso Cotistas C1C C1S C2C C2S C3C C3S C4C C4S Total Ciência Computação 17 1 4 0 4 1 4 0 3 34 Eng. Alimentos 20 1 6 0 4 1 5 0 4 41 Eng. Ambiental 19 1 5 0 4 1 5 0 4 39 Eng. Elétrica 18 1 4 0 4 1 5 0 3 36 Eng. Produção 21 1 6 0 3 1 6 0 2 40 Lic. Química 19 1 5 0 4 1 5 0 2 37 Alimentos 11 0 4 0 2 0 5 0 2 24 Gestão Ambiental 21 1 6 0 4 1 5 0 3 41 Manutenção Industrial 10 0 4 0 2 0 1 0 1 18 RELAÇÃO DE CONVOCADOS PARA 2a CHAMADA - De acordo com o Edital 18/2018, a UTFPR convoca candidatos até 5 (cinco) vezes o número de vagas. Inscrição Categoria Classif. (na Curso Nome do Candidato ENEM (cota) cota) Alimentos 171011651949 KAREN CAVALHEIRO SALES Cat. 1S 1 Alimentos 171018853878 KAROLINE PENTEADO DE OLIVEIRA Cat. 2S 1 Alimentos 171002389467 MARIA RUTH BARATA GARCIA CASTRO Cat. 2S 2 Alimentos 171041441139 MAINARA RECH Cat. 3S 1 Alimentos 171069125838 PAMELA DA SILVA SOARES Cat. 3S 2 Alimentos 171022521362 GLADIS ADRIANA DE MORAIS Cat.
    [Show full text]
  • Eu Whoiswho Official Directory of the European Union
    EUROPEAN UNION EU WHOISWHO OFFICIAL DIRECTORY OF THE EUROPEAN UNION EUROPEAN COMMISSION 16/09/2021 Managed by the Publications Office © European Union, 2021 FOP engine ver:20180220 - Content: - merge of files"Commission_root.xml", "The_College.XML1.5.xml", "temp/CRF_COM_CABINETS.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_SG.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/ CRF_COM_SJ.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_COMMU.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_IDEA.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_BUDG.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/ CRF_COM_HR.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_DIGIT.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_IAS.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_OLAF.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/ CRF_COM_ECFIN.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_GROW.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_DEFIS.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_COMP.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/ CRF_COM_EMPL.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_AGRI.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_MOVE.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_ENER.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/ CRF_COM_ENV.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_CLIMA.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_RTD.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/CRF_COM_CNECT.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml", "temp/ CRF_COM_JRC.RNS.FX.TRAD.DPO.dated.XML1.5.ANN.xml",
    [Show full text]
  • Ministério Da Educação Universidade Federal De Santa Maria Departamento De Registro E Controle Acadêmico
    MINISTÉRIO DA EDUCAÇÃO UNIVERSIDADE FEDERAL DE SANTA MARIA DEPARTAMENTO DE REGISTRO E CONTROLE ACADÊMICO RESULTADO DOS CLASSIFICADOS NO EDITAL Nº 024, DE 13 DE MAIO DE 2011, INGRESSO OU REINGRESSO EM CURSOS DE GRADUAÇÃO DA UFSM, PARA O 2º SEM/2011 O candidato classificado como Transferência Externa, de outra Instituição de Ensino Superior – IES, deverá entrar em contato com a Instituição de origem, verificar a situação acadêmica, com o objetivo de agilizar a expedição de documentos de transferência (Guia de Transferência, Histórico Escolar, notas do Processo Seletivo, Histórico Escolar do Ensino Médio e Certificado de Conclusão); O candidato classificado neste edital, deverá observar a Lei nº 12.089, de 11 de novembro de 2009, que proíbe que uma mesma pessoa ocupe, na condição de estudante, 2 (duas) vagas, simultaneamente, em cursos de graduação, em uma ou mais de uma Instituição Pública de Ensino Superior em todo o território nacional. Nestes casos, o candidato classificado deverá optar, através de declaração, pelo curso de graduação que deseja cursar antes da realização da matrícula. A matrícula (escolha de disciplinas) será realizada no período de 02 a 04 de agosto de 2011, na Coordenação do Curso, para os classificados e com a documentação completa. O candidato que não comparecer no período de 02 a 04 de agosto de 2011, para efetuar a matrícula, perderá o direito à vaga de forma irrecorrível. A divulgação dos classificados será realizada de acordo com o encaminhamento das Coordenações de Curso. Prazo limite para a divulgação: 20 de
    [Show full text]
  • Estado Do Rio Grande Do Sul Município De Cerro Largo-Rs Edital De Concurso Público Nº 006/2014
    ESTADO DO RIO GRANDE DO SUL MUNICÍPIO DE CERRO LARGO-RS EDITAL DE CONCURSO PÚBLICO Nº 006/2014 A SECRETARIA MUNICIPAL DA ADMINISTRAÇÃO E RECURSOS HUMANOS CONCURSO PÚBLICO PARA PROVIMENTO DE CARGOS PÚBLICOS O Município de Cerro Largo, representado pelo seu Prefeito RENÉ JOSÉ NEDEL, através da Secretaria da Administração e no uso de suas atribuições legais, TORNA PÚBLICA a Listagem de homologação das inscrições e a Convocação para as provas objetivas conforme o que segue: 1. A LISTAGEM DE HOMOLOGAÇÃO DAS INSCRIÇÕES confirmadas até esta data no Concurso Público 01/2014 da Prefeitura Municipal de Cerro Largo-RS se encontra apresentada no ANEXO I. 1.1. A listagem está disposta respeitando a ordem alfabética do nome do candidato. 2. O RECURSO apresentado sobre as inscrições está apresentado a seguir: 2.1. LEANDRO OLIVEIRA, inscrição 0737 – Deferido. 3. Os candidatos relacionados no ANEXO I deste Edital ficam CONVOCADOS a realizar a Prova Objetiva no dia 14 de dezembro de 2014, no TURNO TARDE: das 14:00 (quatorze horas) às 18:00 (dezoito horas). 3.1. Os locais de realização das Provas Objetivas conforme segue: E.E.E.F. Dr. Otto Flach(ciep) Rua josé Inácio Schardong 1017 E.E. Eugenio Frantz Rua Monteiro Lobato 514 Colégio Lassale Medianeira Rua Pe. Maximiliano Von Lassberg,666 E.E. E. F. Padre Traezel Rua padre Traesel 140 Escola Municipal Padre José Schardong Rua Jacob Reinoldo Haupenthal 3201 Cerro Largo,4 de dezembro de 2014. RENÉ JOSÉ NEDEL Prefeito Municipal 1 ESTADO DO RIO GRANDE DO SUL MUNICÍPIO DE CERRO LARGO-RS EDITAL DE CONCURSO PÚBLICO Nº 006/2014 ANEXO I 1.
    [Show full text]
  • 8ª Vara De Fazenda Pública Listagem De Eliminação De Documentos N
    8ª Vara de Fazenda Pública Listagem de Eliminação de Documentos n. 65/2017 PROCESSO AUTOR RÉU 3336895 HELIO DE OLIVEIRA DISTRITO FEDERAL 2853695 EVERALDO BELTRAMINI IDR 3423895 ALBERTO BATISTA DOS SANTOS SUPERINTENDENTE IDR 3451895 WILSON MARQUES RODRIGUES DOS SANTOS DISTRITO FEDERAL 3458295 GLAUCIA RODRIGUES DE LIMA ATO DO TCDF 3458895 NILSELI LEITE BARROS ATO DO TCDF 4323295 CLEIDER ALFREDO DE OLIVEIRA DIRETORA DE REC HUMANOS DA FHDF 2831695 DECIO HILTON TOMAZ SUPERINTENDENTE DO IDR 3616795 DECIO HILTON TOMAZ SUP DO IDR 2877895 JOSE TELIS DA SILVA JUNIOR COMANDANTE GERAL DA PMDF MARCOS ANTONIO VASCONCELOS DE 1234496 DISTRITO FEDERAL AZEVEDO DIRETOR DE ENSINO DA POLICIA MILITAR 4877696 JOSE HAROLDO ALVES DE LIMA DO DF 4867295 ERNESTO DOS SANTOS ROSA FILHO DISTRITO FEDERAL 4877196 SILVIO HENRIQUE SANTIAGO SILVA DIRETOR DE ENSINO DA PMDF 5733295 ANTONIO MARCOS PEREIRA DA SILVA DIRETOR DE PESSOAL DO CBMDF 4639995 WANDERLEY FERREIRA NUNES DISTRITO FEDERAL 3067697 ROBERIO JOSE DOS SANTOS DIRETOR PESSOAL DA PMDF 658897 ANTONIO CARLOS REZENDE COMANDANTE GERAL DA PMDF 1936896 HELENA DOS SANTOS SILVA DIRETOR PESSOAL DO CBMDF COMANDANTE G DO CORPO DE 1352996 CLAUDIELENE RODRIGUES PADILHA SANTOS BOMBEIROS MIL DO DF 3859296 FABIO MONTEIRO DO NASCIMENTO DISTRITO FEDERAL 5230495 ARMSTRONG EDUARDO DE LIRA DERETOR PRESIDENTE DA CEB 19980110419266 ROSELI FERREIRA BERNARDES PRESIDENTE DA FHDF 19980110423883 RONALDO DE MARAIS GALETTI CAESB 19980110490384 JULIO CESAR COUTINHO GONTIJO CESPE UNB 19980110230965 ALLYSSON DE OLIVEIRA NORONHA ATO DO COMANDANTE
    [Show full text]
  • Development of a Zooplankton Biotic Index for Trophic State Prediction in Tropical Reservoirs
    Limnetica, 38(1): 303-316 (2019). DOI: 10.23818/limn.38.21 © Asociación Ibérica de Limnología, Madrid. Spain. ISSN: 0213-8409 Development of a zooplankton biotic index for trophic state prediction in tropical reservoirs Bruno Paes De-Carli1,2,*, Adriano Bressane3, Regina Márcia Longo3, Agatha Manzi-Decarli2, Viviane Moschini-Carlos1 and Marcelo Luiz Martins Pompêo4 1 São Paulo State University (UNESP), Institute of Science and Technology, Environmental Sciences Graduate Program, Campus at Sorocaba city, 03 March Avenue, 511, Brazil. 2 Paulista University (UNIP), Institute of Health, Campus at Santos city, Francisco Manoel Avenue, unnum- bered, Brazil. 3 Pontifical Catholic University of Campinas (PUCCAMP), Faculty of Environmental engineering, Dom Pedro I Highway (SP-065), Brazil. 4 Department of Ecology (IB-USP), University of São Paulo, São Paulo, Brazil. * Corresponding author: [email protected] Received: 31/07/18 Accepted: 26/11/18 ABSTRACT Development of a zooplankton biotic index for trophic state prediction in tropical reservoirs Reservoirs are built mainly for public supply and power generation. However, water quality is almost always compromised by discharge of domestic and industrial sewage, as well as by agricultural residues. Several ecological indices are currently used to analyze different impacts in this environment. The aim of this study was to develop a zooplankton index for tropical reservoirs. Limnological data were obtained from seven Brazilian reservoirs (Atibainha, Broa, Barra Bonita, Salto Grande, Rio Grande, Itupararanga, and Igaratá). Weighted values of ecological optimum were obtained through species response analysis (unimodal distribution) related to chlorophyll a concentration. The results obtained using the zooplankton index (ZBI) proposed had significant correlations with eutrophication indicators.
    [Show full text]
  • 1 Craft and the Birth of Post-War Italian Design
    Macintosh HD:ROSSI 9780719089404 PRINT.indd / 9:3:AM - 08-12-2014 9:3:AM - 08-12-2014 / Macintosh HD:ROSSI 9780719089404 PRINT.indd 1 ✧ Craft and the birth of post-war Italian design Introduction N N OVEMBER 1950 Italy at Work: Her Renaissance in Design Today opened at New York’s Brooklyn Museum (see plate 1).1 Primarily I American conceived, funded and organised, Italy at Work aimed to boost Italy’s post-war reconstruction by presenting the nation’s hand- made wares to the American consumer. Despite the word ‘design’ in the title, craft materials and techniques dominated the two thousand five hundred exhibits (see figure 1.1) and the five room sets designed by architects including Carlo Mollino and Gio Ponti. Enjoying critical and popular acclaim, Italy at Work spent the next three years travelling to eleven other museums across North America, closing at the Museum of the Rhode Island School of Design in November 1953.2 In May 1951, just as Italy at Work was embarking on the second leg of its tour, the ninth Triennale di Milano esposizione internazionale delle arti decorative e industriali moderne e dell’architettura moderna (Milan Triennial International Exposition of Modern Decorative and Industrial Arts and Modern Architecture) (see plate 2) opened in Milan, with the theme L’unità delle arti (The Unity of the Arts). The Italian architect and artist organisers attempted to project a unified image of post-war modernity, but this was clouded by internal conflicts that reflected wider political turmoil. While industrial design was present, craft remained the main- stay of Italy’s exhibits, and both were given multiple roles by competing visions for the nation’s post-war future.
    [Show full text]