Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for concatenation (0.24 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            """
    
            expect:
            resolve() == [header]
        }
    
        def "can produce a macro function call by concatenating name and args that contain token concatenation"() {
            given:
            sourceFile << """
                #define HEADER_3 "hello.h"
                #define FUNC(X, Y) X
                #define CONCAT_(X, Y) X ## Y
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %0 = arith.constant dense<1.0> : tensor<1x2xf32>
      %1 = "tfl.concatenation"(%arg0, %0) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2xf32>
      func.return %1 : tensor<2x2xf32>
    
    // CHECK-NEXT: %[[cst:.*]] = arith.constant dense<1.000000e+00> : tensor<1x2xf32>
    // CHECK-NEXT: %[[cc:.*]] = "tfl.concatenation"(%arg0, %[[cst]])
    // CHECK-NEXT: return %[[cc]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

         */
        EXPRESSIONS,
        /**
         * A token concatenation expression whose value should not be macro expanded. These appear in the body of macro directives or as the arguments to a {@link #MACRO_FUNCTION} eg {@code #define ABC(X, Y) X ## Y}.
         */
        TOKEN_CONCATENATION,
        /**
         * A token concatenation expression whose value should be macro expanded.
         */
        EXPAND_TOKEN_CONCATENATION,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/tfl_while_outline.mlir

        %22 = "tfl.concatenation"(%cst_6, %21) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1xi32>, tensor<?xi32>) -> tensor<?xi32>
        %23 = "tfl.reshape"(%arg2, %cst_12) : (tensor<i32>, tensor<1xi32>) -> tensor<1xi32>
        %24 = "tfl.fill"(%cst_11, %cst_9) : (tensor<1xi32>, tensor<i32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/crypto/cipher/cipher.go

    	// to pass a dst bigger than src, and in that case, XORKeyStream will
    	// only update dst[:len(src)] and will not touch the rest of dst.
    	//
    	// Multiple calls to XORKeyStream behave as if the concatenation of
    	// the src buffers was passed in a single run. That is, Stream
    	// maintains state and does not reset at each XORKeyStream call.
    	XORKeyStream(dst, src []byte)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/metrics.h

    monitoring::GaugeCell<std::string>& SavedModelWritePath();
    
    // Returns "/tensorflow/core/saved_model/write/path_and_fingerprint" cell, which
    // contains the path (saved_model_path) and fingerprint (concatenation of
    // graph_def_program_hash, signature_def_hash, saved_object_graph_hash,
    // and checkpoint_hash) of the SavedModel when it is exported.
    monitoring::GaugeCell<std::string>& SavedModelWritePathAndSingleprint();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

     %0 = "tfl.concatenation"(%arg0, %arg1, %arg2, %arg3) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<384x384xf32>, tensor<384x384xf32>, tensor<384x384xf32>, tensor<384x384xf32>) -> tensor<?x?xf32>
      func.return %0: tensor<?x?xf32>
    }
    
    // CHECK-NOT: "tfl.reshape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/metrics.cc

    // (concatenation of graph_def_program_hash, signature_def_hash,
    // saved_object_graph_hash, and checkpoint_hash) of the newly written
    // SavedModel.
    auto* saved_model_write_path_and_singleprint =
        monitoring::Gauge<std::string, 0>::New(
            "/tensorflow/core/saved_model/write/path_and_singleprint",
            "The path (saved_model_path) and singleprint (concatenation of "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/optimize_op_order.mlir

      %1 = "tfl.concatenation"(%0, %arg1) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1000x1000xf32>, tensor<1000x1000xf32>) -> tensor<2000x1000xf32>
      func.return %1 : tensor<2000x1000xf32>
    
    // CHECK-NEXT: tfl.dequantize
    // CHECK-NEXT: tfl.concatenation
    }
    
    // CHECK-LABEL: no_pushdown_multiple_outputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 01 02:06:15 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tests/e2e/simple-graph.mlir

    // CHECK:  [[VAL_1:%.*]] = "tfl.reshape"(%2, %[[CST]]) {tac.device = "GPU",  tac.inference_type = "FLOAT"} : (tensor<1xf32>, tensor<4xi32>) -> tensor<1x1x1x1xf32>
    // CHECK:  [[VAL_2:%.*]] = "tfl.concatenation"([[VAL_0]], [[VAL_1]]) <{axis = 3 : i32, fused_activation_function = "NONE"}> {tac.device = "GPU", tac.inference_type = "FLOAT"} : (tensor<1x1x1x1xf32>, tensor<1x1x1x1xf32>) -> tensor<1x1x1x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top