Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for asmand (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/feed-control-dep.pbtxt

    # CHECK-SAME:  outputs = "output_node"
    # CHECK:         %[[GRAPH:[0-9]+]] = tf_executor.graph
    # CHECK:           %[[CONST:.*]], %[[CONST_control:.*]] = tf_executor.island wraps "tf.Const"()
    # CHECK:           %[[OUTPUT:.*]], %[[OUTPUT_control:.*]] = tf_executor.island wraps "tf.Identity"(%[[CONST]])
    # CHECK:           tf_executor.fetch %[[OUTPUT]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/tf_dataflow.h

              this->join(getLatticeElement(result), *getLatticeElement(arg.get()));
            }
          }
        } else if (auto island = dyn_cast<tf_executor::IslandOp>(op)) {
          for (auto &arg : island.GetYield()->getOpOperands()) {
            auto result = island.getResult(arg.getOperandNumber());
            this->join(getLatticeElement(result), *getLatticeElement(arg.get()));
          }
        } else {
          return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

        // the function body or if they are nested in individual
        // `tf_executor.island`.
        for (Block& block : func.getBody()) BuildClusters(block, builder, info);
        func.walk([&](tf_executor::IslandOp island) {
          BuildClusters(island.GetBody(), builder, info);
        });
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload.go

    )
    
    // GenerateDeltas computes Workload resources. This is design to be highly optimized to delta updates,
    // and supports *on-demand* client usage. A client can subscribe with a wildcard subscription and get all
    // resources (with delta updates), or on-demand and only get responses for specifically subscribed resources.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/a.out.go

    	ADARN
    	AMADDHD
    	AMADDHDU
    	AMADDLD
    
    	/* Vector */
    	ALVEBX
    	ALVEHX
    	ALVEWX
    	ALVX
    	ALVXL
    	ALVSL
    	ALVSR
    	ASTVEBX
    	ASTVEHX
    	ASTVEWX
    	ASTVX
    	ASTVXL
    	AVAND
    	AVANDC
    	AVNAND
    	AVOR
    	AVORC
    	AVNOR
    	AVXOR
    	AVEQV
    	AVADDUM
    	AVADDUBM
    	AVADDUHM
    	AVADDUWM
    	AVADDUDM
    	AVADDUQM
    	AVADDCU
    	AVADDCUQ
    	AVADDCUW
    	AVADDUS
    	AVADDUBS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportingExtension.java

        }
    
        /**
         * The base directory for all reports
         * <p>
         * This value can be changed, so any files derived from this should be calculated on demand.
         *
         * @return The base directory for all reports
         */
        public File getBaseDir() {
            return baseDirectory.getAsFile().get();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/while_op.mlir

    // RUN: tf-opt %s -tf-executor-tpu-v1-island-outlining | FileCheck %s
    
    // CHECK: func @control_input
    // CHECK-NOT: func @
    // CHECK-LABEL: module @_tpu_v1_compat_outlined
    // CHECK: @_tpu_v1_compat_outlined_func0
    // CHECK: func @while_body_with_cluster_attr
    // CHECK: func @while_cond_with_cluster_attr
    // CHECK: func @while_body_without_cluster_attr
    // CHECK: func @while_cond_without_cluster_attr
    // CHECK: func @callee_func
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-control-ret-diff-island.pbtxt

    # Verify for functions with control return values, the island with only a
    # consumed control return value has its control output added to the GraphOps
    # FetchOp.
    
    # Match the island containing the "tf.Neg", capture the output
    # CHECK:          %[[ISLAND_0:[a-z_0-9]*]], %[[ISLAND_0_control:[a-z_0-9]*]] = tf_executor.island wraps "tf.Neg"
    
    # Check that the tf.Neg control is passed to the fetch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-control-ret-same-island.pbtxt

    # Verify for functions with control return values, the island with a consumed
    # data output and a consumed control has both its outputs added to the GraphOps
    # FetchOp.
    
    # Match the island containing the "tf.Neg", capture the output
    # CHECK:          %[[ISLAND:[a-z_0-9]*]], %[[ISLAND_control:[a-z_0-9]*]] = tf_executor.island wraps "tf.Neg"
    
    # Check that the tf.Neg data output and control are passed to the fetch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/inst.go

    	case AFMADDQ:
    		return &inst{0x43, 0x0, 0x0, 96, 0x3}
    	case AFMADDS:
    		return &inst{0x43, 0x0, 0x0, 0, 0x0}
    	case AFMAXD:
    		return &inst{0x53, 0x1, 0x0, 672, 0x15}
    	case AFMAXQ:
    		return &inst{0x53, 0x1, 0x0, 736, 0x17}
    	case AFMAXS:
    		return &inst{0x53, 0x1, 0x0, 640, 0x14}
    	case AFMIND:
    		return &inst{0x53, 0x0, 0x0, 672, 0x15}
    	case AFMINQ:
    		return &inst{0x53, 0x0, 0x0, 736, 0x17}
    	case AFMINS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top