Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for defUse (0.18 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    func.func @prepareStatistics(%arg0: tensor<8x4x3xf32>) -> tensor<8x4x3xf32> {
      %0 = "quantfork.stats"(%arg0) {
        layerStats = dense<[-1.0, 1.0]> : tensor<2xf32>
      } : (tensor<8x4x3xf32>) -> tensor<8x4x3xf32>
      %1 = "quantfork.stats"(%0) {
        layerStats = dense<[-1.0, 1.0]> : tensor<2xf32>,
        axisStats = dense<[
          [-1.0, 1.0],
          [-8.0, 8.0],
          [-0.5, 0.5]
        ]> : tensor<3x2xf32>, axis = 2 : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

          %cst_4 = arith.constant dense<[0, 0, 1, 1, 1]> : tensor<5xi32>
          %cst_5 = arith.constant dense<[0, 1, 0, 1, 1]> : tensor<5xi32>
          %cst_6 = arith.constant dense<2> : tensor<i32>
          %cst_7 = arith.constant dense<"*"> : tensor<!tf_type.string>
          %cst_8 = arith.constant dense<-1> : tensor<1xi32>
          %cst_9 = arith.constant dense<-1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    #define NEED_EXT_FEATURES_CX V2_EXT_FEATURES_CX
    #endif
    
    #ifdef GOAMD64_v3
    #define NEED_MAX_CPUID 0x80000001
    #define NEED_FEATURES_CX V3_FEATURES_CX
    #define NEED_EXT_FEATURES_CX V3_EXT_FEATURES_CX
    #define NEED_EXT_FEATURES_BX V3_EXT_FEATURES_BX
    #define NEED_OS_SUPPORT_AX V3_OS_SUPPORT_AX
    #endif
    
    #ifdef GOAMD64_v4
    #define NEED_MAX_CPUID 0x80000001
    #define NEED_FEATURES_CX V4_FEATURES_CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

    // resources.
    
    // CHECK-LABEL: func @cluster_with_loop
    func.func @cluster_with_loop() -> () {
      // CHECK: %[[COUNT:.*]] = "tf.Const"() <{value = dense<10> : tensor<i32>}>
      %0 = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
      // CHECK: %[[VH:.*]] = "tf.VarHandleOp"()
      %1 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    func.func @decomposition_outside_cluster() {
      %0 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<2x8xi32>>>
      // CHECK:      %[[ONE:.*]] = "tf.Const"() <{value = dense<1> : tensor<i32>}>
      %1 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
      // CLUSTER-ONLY: "tf.AssignAddVariableOp"
      // ALWAYS-DECOMPOSE-NOT:  "tf.AssignAddVariableOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        %control_A = tf_executor.island wraps "tf.OpA"() : () -> ()
        // CHECK: %[[CHAIN_CONSTANT:.*]], %{{.*}} = tf_executor.island wraps "tf.Const"() <{value = dense<1> : tensor<i32>}> : () -> tensor<i32>
        // CHECK: %[[WHILE_OUT:.*]]:6, %[[WHILE_CONTROL:.*]] = tf_executor.island(%[[A_CONTROL]]) wraps "tf.While"(%[[ARG_0]], %[[ARG_1]], %[[ARG_2]], %[[ARG_2]], %[[CHAIN_CONSTANT]], %[[CHAIN_CONSTANT]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    The native software model builds on the base Gradle software model.
    
    To build native software using Gradle, your project should define one or more _native components_. Each component represents either an executable or a library that Gradle should build. A project can define any number of components. Gradle does not define any components by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      for (auto& n : nodes) {
        if (n.attr.empty()) {
          n.attr = {{"T", DT_FLOAT}};
        }
      }
      *g = FunctionDefHelper::Define(
          // Arg defs
          {"x: float", "dy: float"},
          // Ret val defs
          {"dx: float"},
          // Attr defs
          {},
          // Nodes
          nodes);
      return absl::OkStatus();
    }
    
    // A gradient containing only supported operators
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    #pragma GCC diagnostic ignored "-Wunaligned-access"
    
    #include <errno.h>
    #include <string.h>
    `
    
    // Prologue defining TSAN functions in C.
    const noTsanProlog = `
    #define CGO_NO_SANITIZE_THREAD
    #define _cgo_tsan_acquire()
    #define _cgo_tsan_release()
    `
    
    // This must match the TSAN code in runtime/cgo/libcgo.h.
    // This is used when the code is built with the C/C++ Thread SANitizer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    				// are in hex and half are in whatever the #define used.
    				n.Const = fmt.Sprintf("%#x", i)
    			} else if n.Define[0] == '\'' {
    				if _, err := parser.ParseExpr(n.Define); err == nil {
    					n.Kind = "iconst"
    					n.Const = n.Define
    				}
    			} else if n.Define[0] == '"' {
    				if _, err := parser.ParseExpr(n.Define); err == nil {
    					n.Kind = "sconst"
    					n.Const = n.Define
    				}
    			}
    
    			if n.IsConst() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top