Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for called_func (0.44 sec)

  1. pkg/volume/util/operationexecutor/fakegenerator.go

    // has been caled
    type fakeOGCounter struct {
    	// calledFuncs stores name and count of functions
    	calledFuncs map[string]int
    	opFunc      func() volumetypes.OperationContext
    }
    
    var _ OperationGenerator = &fakeOGCounter{}
    
    // NewFakeOGCounter returns a OperationGenerator
    func NewFakeOGCounter(opFunc func() volumetypes.OperationContext) OperationGenerator {
    	return &fakeOGCounter{
    		calledFuncs: map[string]int{},
    		opFunc:      opFunc,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/while_op.mlir

        func.return %0 : tensor<i32>
      }
      func.func @while_cond_without_cluster_attr(%arg0: tensor<i32>) -> tensor<i1> {
        %0 = "tf.PartitionedCallOp"(%arg0) { f = @callee_func} : (tensor<i32>) -> tensor<i1>
        func.return %0 : tensor<i1>
      }
      func.func @callee_func(%arg0: tensor<i32>) -> tensor<i1> {
        %0 = "tf.some_op"(%arg0) : (tensor<i32>) -> tensor<i1>
        func.return %0 : tensor<i1>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_hashtable_ops_as_args.cc

          SymbolTable::getSymbolUses(target_func, &module_op.getBodyRegion());
      for (auto& function_use : function_uses.value()) {
        auto call_op = function_use.getUser();
        auto caller_func = call_op->getParentOfType<func::FuncOp>();
        if (!caller_func) return failure();
    
        builder.setInsertionPoint(call_op);
        for (auto [lifted_op, arg_idx] : lifted_op_and_arg_idx) {
          auto new_op = builder.clone(*lifted_op, mapping);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_inlining/while_op.mlir

        }
        func.func @while_cond_without_cluster_attr(%arg0: tensor<i32>) -> tensor<i1> {
          %0 = "tf.some_other_op"(%arg0) : (tensor<i32>) -> tensor<i1>
          func.return %0 : tensor<i1>
        }
        func.func @callee_func(%arg0: tensor<i32>) -> tensor<i1> {
          %0 = "tf.some_op"(%arg0) : (tensor<i32>) -> tensor<i1>
          func.return %0 : tensor<i1>
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @test_arg_count_mismatch(%arg0: tensor<i32>) -> () {
      // expected-error @below {{argument count mismatch: 'args' has 1 argument(s), but 'call_func' expects 2}}
      "tf.LegacyCall"(%arg0) {f = @call_func} : (tensor<i32>) -> tensor<i32>
      func.return
    }
    
    func.func @call_func(%arg0: tensor<f32>, %arg1: tensor<f32>) -> tensor<f32> {
      func.return %arg0 : tensor<f32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top