Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for some_func (0.18 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-skip-partitioned-calls.mlir

        %0 = "tf.StatefulPartitionedCall"(%arg0) <{
          config = "", config_proto = "", executor_type = "", f = @some_func
        }> {
          _collective_manager_ids = [], device = ""
        } : (tensor<1x2x2x3xf32>) -> tensor<1x2x2x3xf32>
        // CHECK-SKIP: tf.StatefulPartitionedCall
        // CHECK-NOSKIP: call @some_func
        // CHECK-NOSKIP-NOT: tf.StatefulPartitionedCall
        %1 = "tf.PartitionedCall"(%0) <{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 20:05:12 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithLibraryDependenciesIntegrationTest.groovy

                    apply plugin: 'cpp-library'
                }
    """
            file("src/main/headers/main_lib.h") << """
                extern int some_func();
    """
            file("src/main/cpp/main_lib.cpp") << """
                #include <lib.h>
                #include <main_lib.h>
                
                int some_func() { 
                    lib_func();
                    return 0; 
                }
    """
            file("src/test/cpp/main.cpp") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops.mlir

        %arg2: tensor<!tf_type.resource<tensor<?x64xf32>>> {tf_saved_model.bound_input = @some_variable}
      ) -> (
        tensor<f32> {tf_saved_model.index_path = [0, "bar"]}
      ) attributes { tf_saved_model.exported_names = ["some_func"] }
      {
        "tf.some_call"() {callee = @f} : () -> ()
        func.return %arg0 : tensor<f32>
      }
    
      func.func private @f() attributes {
        func.return
      }
    
      // Representation for init functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // RUN:   -split-input-file | FileCheck %s --check-prefix=STATIC-RANGE-PTQ-TO-ALL
    
    // STATIC-RANGE-PTQ-TO-ALL-LABEL: @some_func
    func.func @some_func(%arg0: tensor<1x1x167xf32>) -> tensor<1x1x64xf32> {
      %0 = stablehlo.constant dense<2.000000e+00> : tensor<167x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

          /*inputs=*/{filename_input_type}, /*results=*/{});
      auto save_func = builder.create<func::FuncOp>(
          NameLoc::get(builder.getStringAttr(kTfQuantSaveFuncName)),
          /*sym_name=*/kTfQuantSaveFuncName, func_type);
      save_func.addEntryBlock();
      save_func.setPrivate();
    
      return save_func;
    }
    
    // Creates a save function that contains the `TF::SaveV2Op` for the variables in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevel.kt

    class SomeClass
    
    @Suppress("CONFLICTING_OVERLOADS")
    fun someFun(): SomeClass {
        return SomeClass()
    }
    
    @Suppress("CONFLICTING_OVERLOADS")
    fun someFun() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 158 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsInClass.kt

    class SomeClass
    
    class OtherClass {
        @Suppress("CONFLICTING_OVERLOADS")
        fun someFun(): SomeClass {
            return SomeClass()
        }
    
        @Suppress("CONFLICTING_OVERLOADS")
        fun someFun() {
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 207 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevelWithFileSuppression.kt

    @file:Suppress("CONFLICTING_OVERLOADS")
    
    class SomeClass
    
    fun someFun(): SomeClass {
        return SomeClass()
    }
    
    fun someFun() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 129 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsInNestedClass.kt

    class SomeClass
    
    class OtherClass {
        class NestedClass {
            @Suppress("CONFLICTING_OVERLOADS")
            fun someFun(): SomeClass {
                return SomeClass()
            }
    
            @Suppress("CONFLICTING_OVERLOADS")
            fun someFun() {
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 265 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevel2.kt

    // FIR test. It will be fixed by KT-63221.
    
    class SomeClass
    
    fun someFun(): Int {
        return 5
    }
    
    @Suppress("CONFLICTING_OVERLOADS")
    fun someFun(): SomeClass {
        return SomeClass()
    }
    
    @Suppress("CONFLICTING_OVERLOADS")
    fun someFun() {
    }
    
    fun someFun(): String {
        return ""
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 434 bytes
    - Viewed (0)
Back to top