Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for llvmasm (0.25 sec)

  1. src/cmd/link/internal/ld/macho.go

    		sb.SetType(sym.SMACHOINDIRECTGOT)
    		sb.SetReachable(true)
    	}
    
    	// Add a dummy symbol that will become the __asm marker section.
    	if ctxt.IsExternal() {
    		s = ctxt.loader.LookupOrCreateSym(".llvmasm", 0)
    		sb = ctxt.loader.MakeSymbolUpdater(s)
    		sb.SetType(sym.SMACHO)
    		sb.SetReachable(true)
    		sb.AddUint8(0)
    	}
    
    	// Un-export runtime symbols from plugins. Since the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/init_mlir.cc

    TensorFlow and LLVM:
      * Flags before the first '--' are parsed by tensorflow::InitMain while those
        post are parsed by LLVM's command line parser.
      * If there is no separator, then no flags are parsed by InitMain and only
        LLVM command line parser used.e
    The above help options reported are for LLVM's parser, run with `--help --` for
    TensorFlow's help.
    )");
    
    namespace tensorflow {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/path-operation-advanced-configuration.md

    ```Python hl_lines="2 12 13 14 15 16 17 18 19 20 21 24"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial002.py!}
    ```
    
    !!! tip "Consejo"
        Si llamas manualmente a `app.openapi()`, debes actualizar el `operationId`s antes de hacerlo.
    
    !!! warning "Advertencia"
        Si haces esto, debes asegurarte de que cada una de tus *funciones de las operaciones de path* tenga un nombre único.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jul 04 12:49:31 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/dialects.md

    * An experimental affine dialect, which focuses on
      [polyhedral representations](https://en.wikipedia.org/wiki/Polytope_model)
      and optimizations.
    * LLVM IR, which has a 1:1 mapping between it and LLVM’s own representation,
      allowing MLIR to emit GPU and CPU code through LLVM.
    * TensorFlow Lite, which will translate to running code on mobile platforms.
    
    Each dialect consists of a set of defined operations which have invariants
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

    using llvm::Record;
    using llvm::RecordKeeper;
    using mlir::tblgen::Operator;
    
    // Helper macro that returns indented os.
    #define OUT(X) os.indent((X))
    
    // The function below has a non-constant reference as that is required by LLVM's
    // TableGenMain.
    // NOLINTNEXTLINE
    static bool OpQuantSpecWriter(raw_ostream &os, RecordKeeper &records) {
      llvm::Regex acc_uniform_trait_regex{"AccumulatorUniformScale<([0-9]*),"};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/runtime/race_s390x.s

    	MOVD	$__tsan_read_range(SB), R1
    	LMG	addr+0(FP), R3, R5
    	// pc is an interceptor address, but TSan expects it to point to the
    	// middle of an interceptor (see LLVM's SCOPED_INTERCEPTOR_RAW).
    	ADD	$2, R5
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewriterange(addr, size uintptr)
    // Called from instrumented code.
    TEXT	runtime·racewriterange(SB), NOSPLIT, $0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/converter_gen.cc

              "attributes);\n";
      }
      // Fallthrough case is no attributes
      os << "}";
    }
    
    // The function below has a non-constant reference as that is required by LLVM's
    // TableGenMain.
    // NOLINTNEXTLINE
    static bool OperatorWritersMain(raw_ostream &os, RecordKeeper &records) {
      emitSourceFileHeader("MLIR TFLite FlatBuffer Builders", os);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. docs/es/docs/async.md

    Si tu función de utilidad es creada con `def` normal, se llamará directamente (tal cual la escribes en tu código), no en un threadpool, si la función se crea con `async def`, entonces debes usar `await` con esa función cuando la llamas en tu código.
    
    ---
    
    Nuevamente, estos son detalles muy técnicos que probablemente sólo son útiles si los viniste a buscar expresamente.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top