Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,400 for zout (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize_per_channel.mlir

        // CHECK: "tf.XlaCallModule"(%[[dq_act]], %[[dq_weight]]
        %1 = "tf.XlaCallModule"(%0, %cst_0, %cst) {
          Sout = [#tf_type.shape<1x2x2x2>], config = "",
          module = "composite_conv2d_with_bias_and_relu6_fn_10",
          _entry_function = @composite_conv2d_with_bias_and_relu6_fn_10,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 07:48:15 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/cpp/hello.cpp

        std::wstring wide = std::wstring(pBuf, len);
        return std::string(wide.begin(), wide.end());
    }
    
    void hello() {
        std::string hello = LoadStringFromResource(IDS_HELLO);
        std::cout << hello << std::endl;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 528 bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/a.out.go

    // cmd/9c/9.out.h from Vita Nuova.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-uint8-return.pbtxt

    node {
      name: "PartitionedCall"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_UINT8
          }
        }
      }
      attr {
        key: "_gradient_op_type"
        value {
          s: "PartitionedCall-15"
        }
      }
      attr {
        key: "config"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

    node {
      name: "_tf.PartitionedCall"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_FLOAT
          }
        }
      }
      attr {
        key: "f"
        value {
          func {
            name: "foo"
          }
        }
      }
    }
    library {
      function {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAlternateSourceGreeterFunction.groovy

            super(publicHeaderDir)
    
            source = ofFile(sourceFile("cpp", "greeter.cpp", """
    #include <iostream>
    #include "greeter.h"
    
    void sayGreeting() {
        std::cout << "${HelloWorldApp.HELLO_WORLD} - ${HelloWorldApp.HELLO_WORLD_FRENCH}" << std::endl;
    }
    """))
        }
    
        @Override
        CppAlternateSourceGreeterFunction asLib() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLogger.groovy

    };
    """))
    
        final SourceFileElement source = ofFile(new SourceFile("cpp", "logger.cpp", """
    #include <iostream>
    #include "logger.h"
    
    void Logger::log(std::string &str) {
        std::cout << str << std::endl;
    }
    """))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_weight_only.mlir

        %1 = "quantfork.dcast"(%0) : (tensor<2x3x!quant.uniform<i8:f32, 6.000000e-03>>) -> tensor<2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLoggerWithGreeterApi.groovy

    #ifdef __cplusplus
    }
    #endif
    """))
    
        final SourceFileElement source = ofFile(new SourceFile("cpp", "logger.cpp", """
    #include <iostream>
    #include "logger.h"
    
    void logGreeting() {
        std::cout << "${HelloWorldApp.HELLO_WORLD}" << std::endl;
    }
    """))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

    }
    """
            when:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
            installation("build/install/main/debug").exec().out == "Hello from the debug library"
            installation("build/install/main/release").exec().out == "Hello from the release library"
        }
    
        @ToBeFixedForConfigurationCache
        def "can choose alternative library implementation of api"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top