Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,583 for defUse (0.12 sec)

  1. src/runtime/defs2_linux.go

    The asm header tricks we have to use for Linux on amd64
    (see defs.c and defs1.c) don't work here, so this is yet another
    file.  Sigh.
    */
    
    package runtime
    
    /*
    #cgo CFLAGS: -I/tmp/linux/arch/x86/include -I/tmp/linux/include -D_LOOSE_KERNEL_NAMES -D__ARCH_SI_UID_T=__kernel_uid32_t
    
    #define size_t __kernel_size_t
    #define pid_t int
    #include <asm/signal.h>
    #include <asm/mman.h>
    #include <asm/sigcontext.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. src/runtime/defs_linux.go

    */
    
    package runtime
    
    /*
    // Linux glibc and Linux kernel define different and conflicting
    // definitions for struct sigaction, struct timespec, etc.
    // We want the kernel ones, which are in the asm/* headers.
    // But then we'd get conflicts when we include the system
    // headers for things like ucontext_t, so that happens in
    // a separate file, defs1.go.
    
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    #include <asm/posix_types.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/decompose_hybrid_quantization.cc

    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass decomposes dense operations that assume
    // support for hybrid quantization. These cases cover when a dense operation
    // (e.g. matmul) has both quantized and unquantized inputs by dequantizing
    // the quantized inputs, performing the operation in the expressed type, then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/utils.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_MLIR_TF2XLA_TRANSFORMS_UTILS_H_
    #define TENSORFLOW_COMPILER_MLIR_TF2XLA_TRANSFORMS_UTILS_H_
    
    #include "llvm/ADT/ArrayRef.h"
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_COMPOSITE_AVG_POOL_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_COMPOSITE_AVG_POOL_H_
    
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables_test_pass.h

          override {
        for (const std::string& output_name : output_names) {
          Tensor output;
          if (output_name == "dense/bias") {
            Tensor t = Tensor(tensorflow::DT_FLOAT, tensorflow::TensorShape({50}));
            t.flat<float>().setZero();
            outputs->push_back(t);
          } else if (output_name == "dense/kernel") {
            Tensor t =
                Tensor(tensorflow::DT_FLOAT, tensorflow::TensorShape({100, 50}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 15:49:06 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

      emitSourceFileHeader("Generated Ops Quant Spec Getters", os);
    
      // Retrieve all the definitions derived from Op definition and sort by record
      // name.
      std::vector<Record *> defs = records.getAllDerivedDefinitions("Op");
      llvm::sort(defs, LessRecord());
    
      OUT(0) << "static std::unique_ptr<quant::OpQuantSpec> "
                "GetOpQuantSpec(mlir::Operation *op, bool "
                "disable_per_channel_for_dense_layers = false) {\n";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. README.md

    ```kotlin
        dependencies {
           // define a BOM and its version
           implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
    
           // define any required OkHttp artifacts without version
           implementation("com.squareup.okhttp3:okhttp")
           implementation("com.squareup.okhttp3:logging-interceptor")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/lex/lex_test.go

    		lines(
    			"#ifdef A",
    			"#ifdef B",
    			"#define C 1234",
    			"#else",
    			"#define C 5678",
    			"#endif",
    			"#endif",
    			"C",
    		),
    		"C.\n",
    	},
    	{
    		"nested #define",
    		lines(
    			"#define A #define B THIS",
    			"A",
    			"B",
    		),
    		"THIS.\n",
    	},
    	{
    		"nested #define with args",
    		lines(
    			"#define A #define B(x) x",
    			"A",
    			"B(THIS)",
    		),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

    limitations under the License.
    ==============================================================================*/
    
    // This is the operation enums definition file for TensorFlow Lite.
    
    #ifndef TFL_OP_ENUMS
    #define TFL_OP_ENUMS
    
    include "mlir/IR/AttrTypeBase.td"
    include "mlir/IR/EnumAttr.td"
    include "mlir/IR/OpBase.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
Back to top