Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for some_name (0.34 sec)

  1. tensorflow/compiler/aot/test_graph_tfunknownop2.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "z_identity"}
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    }
    fetch {
      id { node_name: "x_z_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 348 bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/test_graph_tffunction.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "func_call" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 235 bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/bench_graph_tfmatmul.template.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: <M> }
        dim { size: <K> }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: <K> }
        dim { size: <N> }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 15:53:56 UTC 2023
    - 280 bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_graph_tfmatmulandadd.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
      name: "x"
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: 2 }
        dim { size: 2 }
      }
      name: "y"
    }
    fetch {
      id { node_name: "x_y_prod" }
      name: "x_y_prod"
    }
    fetch {
      id { node_name: "x_y_sum" }
      name: "x_y_sum"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 373 bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/test_graph_tftop_k.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x" }
      shape {
        dim { size: 5 }
      }
    }
    fetch {
      id { node_name: "values" }
    }
    fetch {
      id { node_name: "indices" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 20 09:03:59 UTC 2018
    - 193 bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/test_graph_tfunknownop.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 233 bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/test_graph_tfgather.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "params" }
      shape {
        dim { size: 4 }
      }
    }
    feed {
      id { node_name: "indices" }
      shape {
        dim { size: 2 }
      }
    }
    fetch {
      id { node_name: "gather_output" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 238 bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tests/test_graph_tfvariable_readonly.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    fetch {
      id { node_name: "result" }
    }
    
    variable {
      node_name: "x"
      shape {
      }
      type: DT_FLOAT
      readonly: true
    }
    
    variable {
      node_name: "y"
      shape {
      }
      type: DT_FLOAT
      readonly: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 20 20:03:30 UTC 2020
    - 244 bytes
    - Viewed (0)
  9. tensorflow/cc/tools/freeze_saved_model.cc

      while (!nodes_to_visit.empty()) {
        const string node_name = nodes_to_visit.front();
        nodes_to_visit.pop();
        if (reachable_node_names->find(node_name) != reachable_node_names->end()) {
          continue;
        }
        reachable_node_names->insert(node_name);
        NodeDef* node = name_to_node_map.at(node_name);
        if (kVariableTypes->find(node->op()) != kVariableTypes->end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ObjectFactoryExtensionsTest.kt

            val objectFactory = mock<ObjectFactory> {
                on { named(any<Class<Named>>(), eq("foo")) } doReturn SomeNamed("foo")
            }
    
            val named = objectFactory.named<SomeNamed>("foo")
            assertThat(named.name, equalTo("foo"))
    
            inOrder(objectFactory) {
                verify(objectFactory).named(SomeNamed::class.java, "foo")
                verifyNoMoreInteractions()
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top