Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for body_fn (0.12 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK: [[map_fn_result:%.*]] = tf_mlrt.tf_map_fn([[reserve_size]], [[tensor_list]], %arg0)
      // CHECK-SAME: {body_fn = @"map/while_body/MapFnBody", num_tensor_list_or_flow_in = 1 : i32}
      // CHECK-NOT: tf.While
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    }
    
    LogicalResult FindOwningWhileOp(func::FuncOp body_func, ModuleOp module,
                                    TF::WhileOp& while_op) {
      // Given a while loop body function 'body_func', find the tf.While Op that
      // uses it.
      auto uses_optional = body_func.getSymbolUses(module);
      if (!uses_optional.has_value()) {
        body_func.emitOpError() << "no use of while loop body";
        return LogicalResult::failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    		ServeContent(rec, req, "nothing", time.Now(), bytes.NewReader(nil))
    		res := rec.Result()
    		if res.StatusCode != 200 {
    			t.Errorf("code = %v; want 200", res.Status)
    		}
    		bodyLen := rec.Body.Len()
    		if bodyLen != 0 {
    			t.Errorf("body.Len() = %v; want 0", res.Status)
    		}
    	}
    }
    
    var fsRedirectTestData = []struct {
    	original, redirect string
    }{
    	{"/test/index.html", "/test/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                       updated_argument_types[arg.getArgNumber()]);
      }
      rewriter.applySignatureConversion(&entry.front(), signature_conversion);
    }
    
    // Changes the function type of `cond_func` and `body_func` for the given While
    // op.
    LogicalResult UpdateFunctionTypesForWhileOp(
        ConversionPatternRewriter &rewriter, TF::WhileOp op, ValueRange operands,
        const llvm::SmallSet<int, 4> &tensor_list_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    and therefore should be independent. Note that the `NoOp`s are considered
    as intermediate ops for control dependency grouping.
    ### `-tf-executor-convert-control-to-data-outputs`
    
    _Chain control outputs of while loop body_
    
    This pass converts the control outputs of a while loop body function to data
    outputs. Thus, inter iteration control dependencies are transformed to
    data dependencies. Since data dependencies can express which particular
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top