Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,192 for defUse (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/asm_amd64.h

    // license that can be found in the LICENSE file.
    
    // Define features that are guaranteed to be supported by setting the AMD64 variable.
    // If a feature is supported, there's no need to check it at runtime every time.
    
    #ifdef GOAMD64_v2
    #define hasPOPCNT
    #define hasSSE42
    #endif
    
    #ifdef GOAMD64_v3
    #define hasAVX
    #define hasAVX2
    #define hasPOPCNT
    #define hasSSE42
    #endif
    
    #ifdef GOAMD64_v4
    #define hasAVX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 18:30:03 UTC 2023
    - 631 bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-monolithic/common.gradle

            all {
                cCompiler.define "SOMETHING1=0"
                cCompiler.define "SOMETHING2=0"
                cCompiler.define "SOMETHING3=0"
                cCompiler.define "SOMETHING4=0"
                cCompiler.define "SOMETHING5=0"
                cCompiler.define "SOMETHING6=0"
                cCompiler.define "SOMETHING7=0"
    
                cppCompiler.define "SOMETHING1=0"
                cppCompiler.define "SOMETHING2=0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    !define Rel_D(e_from,e_to, e_label) Rel_(e_from,e_to, e_label, "-DOWN->")
    !define Rel_D(e_from,e_to, e_label, e_techn) Rel_(e_from,e_to, e_label, e_techn, "-DOWN->")
    !define Rel_Down(e_from,e_to, e_label) Rel_D(e_from,e_to, e_label)
    !define Rel_Down(e_from,e_to, e_label, e_techn) Rel_D(e_from,e_to, e_label, e_techn)
    
    !define Rel_U(e_from,e_to, e_label) Rel_(e_from,e_to, e_label, "-UP->")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/WindowsResourceHelloWorldApp.groovy

        String compilerArgs(String arg) {
            "rcCompiler.args '${arg}'"
        }
    
        @Override
        String compilerDefine(String define) {
            "rcCompiler.define '${define}'"
        }
    
        @Override
        String compilerDefine(String define, String value) {
            "rcCompiler.define '${define}', '${value}'"
        }
    
        @Override
        SourceFile getMainSource() {
            return sourceFile("cpp", "main.cpp", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top