Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for some_func (0.18 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_test.cc

    TEST_P(UnifiedCAPI, TF_AbstractOpSetOpTypeAfterFinishingOpBuildingRaises) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
      TF_ExecutionContext* graph_ctx = TF_CreateFunction("some_func", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    
      // Add a placeholder to the graph.
      auto* placeholder_op = TF_NewAbstractOp(graph_ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    }
    
    // -----
    
    module {
    // CHECK-LABEL: func private @some_func
    // CHECK-LABEL: func @func_with_call
    func.func private @some_func(%arg0: tensor<100xf32>) -> tensor<100xf32> attributes {tf.api_implements = "lstm_b4e9f0e7-ac55-42bc-8ef2-8496419a608c"}
    func.func @func_with_call(%arg0: tensor<100xf32>) -> tensor<100xf32> {
      %0 = func.call @some_func(%arg0) : (tensor<100xf32>) -> tensor<100xf32>
      func.return %0 : tensor<100xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteFor.kt

    fun someFun() {
        for (i i)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 22 17:15:24 UTC 2023
    - 32 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

      %0 = "tf.MyMapAndBatchDataset"(%input, %other1, %other2)
        {batch_size=1000 : i64, num_parallel_calls = 8 : i64, drop_remainder = 0 : i1,
         func = @"__some_func", output_types = [f32], output_shapes = [#tf_type.shape<>], preserve_cardinality = true}
        : (tensor<*x!tf_type.variant>, tensor<*xf32>, tensor<*xi32>) -> tensor<*x!tf_type.variant>
      func.return %0 : tensor<*x!tf_type.variant>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top